console/packages/libraries/cli/src/commands/config/reset.ts
2024-08-01 15:06:10 +00:00

10 lines
260 B
TypeScript

import Command from '../../base-command';
export default class ResetConfig extends Command<typeof ResetConfig> {
static description = 'resets local cli configuration';
async run() {
this.userConfig.clear();
this.success('Config cleared.');
}
}