diff --git a/src/commands/hello/greet.ts b/src/commands/hello/greet.ts deleted file mode 100644 index 3b77354..0000000 --- a/src/commands/hello/greet.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { Command, Flags } from "@oclif/core"; - -export default class Greet extends Command { - static args = { - // Puedes agregar argumentos adicionales si lo necesitas - }; - - static description = "Greet the user with a message"; - - static examples = [ - `<%= config.bin %> <%= command.id %> --name=Mau -hello Mau! -`, - ]; - - static flags = { - name: Flags.string({ - char: "n", - description: "name to greet", - required: false, - }), - }; - - async run(): Promise { - const { flags } = await this.parse(Greet); - const name = flags.name ?? "user"; - this.log(`hello ${name}!`); - } -} diff --git a/src/commands/hello/index.ts b/src/commands/hello/index.ts deleted file mode 100644 index f7b639c..0000000 --- a/src/commands/hello/index.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { Args, Command, Flags } from "@oclif/core"; - -export default class Hello extends Command { - static args = { - person: Args.string({ - description: "Person to say hello to", - required: true, - }), - }; - - static description = "Say hello"; - - static examples = [ - `<%= config.bin %> <%= command.id %> friend --from oclif -hello friend from oclif! (./src/commands/hello/index.ts) -`, - ]; - - static flags = { - from: Flags.string({ - char: "f", - description: "Who is saying hello", - required: true, - }), - }; - - async run(): Promise { - const { args, flags } = await this.parse(Hello); - - this.log( - `hello ${args.person} from ${flags.from}! (./src/commands/hello/index.ts)`, - ); - } -} diff --git a/src/commands/hello/world.ts b/src/commands/hello/world.ts deleted file mode 100644 index 8111043..0000000 --- a/src/commands/hello/world.ts +++ /dev/null @@ -1,19 +0,0 @@ -import {Command} from '@oclif/core' - -export default class World extends Command { - static args = {} - - static description = 'Say hello world' - - static examples = [ - `<%= config.bin %> <%= command.id %> -hello world! (./src/commands/hello/world.ts) -`, - ] - - static flags = {} - - async run(): Promise { - this.log('hello world! (./src/commands/hello/world.ts)') - } -} diff --git a/src/commands/project/info.ts b/src/commands/project/info.ts index ded21ce..a64d4b1 100644 --- a/src/commands/project/info.ts +++ b/src/commands/project/info.ts @@ -54,7 +54,7 @@ export default class ProjectInfo extends Command { const selectedProjectId = answers.selectedProject; - await await this.showProjectInfo(auth, selectedProjectId); + await this.showProjectInfo(auth, selectedProjectId); } catch (error) { // @ts-expect-error hola this.error(chalk.red(`Failed to fetch project list: ${error.message}`));