Skip to content

Commit

Permalink
fix: missing BaseCommand usage
Browse files Browse the repository at this point in the history
  • Loading branch information
rpidanny committed Jul 4, 2024
1 parent 4fa330a commit 939dbf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/config/set.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Command } from '@oclif/core'
import fs from 'fs-extra'
import path from 'path'

import { BaseCommand } from '../../base.command.js'
import { CONFIG_FILE_NAME } from '../../config/constants.js'
import { ConfigSchema, TConfig } from '../../config/schema.js'
import uiInput from '../../utils/ui/input.js'

export default class SetConfig extends Command {
export default class SetConfig extends BaseCommand<typeof SetConfig> {
static description = 'Set config'

static examples = ['<%= config.bin %> <%= command.id %>']
Expand Down

0 comments on commit 939dbf0

Please sign in to comment.