nopalm
Version:
One stop graphical solution to create and manage your local Node.Js projects end to end.
20 lines (14 loc) • 432 B
text/typescript
import { Command, flags } from '@oclif/command';
class GreetCommand extends Command {
async run() {
const { flags } = this.parse(GreetCommand);
const name = flags.name || 'world';
this.log(`Hello, ${name}!`);
}
}
GreetCommand.description = 'Describe the command here';
GreetCommand.flags = {
name: flags.string({ char: 'n', description: 'name to print' }),
};
export default GreetCommand;