clean files

This commit is contained in:
Mauricio Siu
2024-06-22 15:53:49 -06:00
parent d610c967d9
commit 209eadce99
4 changed files with 1 additions and 83 deletions

View File

@@ -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<void> {
const { flags } = await this.parse(Greet);
const name = flags.name ?? "user";
this.log(`hello ${name}!`);
}
}

View File

@@ -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<void> {
const { args, flags } = await this.parse(Hello);
this.log(
`hello ${args.person} from ${flags.from}! (./src/commands/hello/index.ts)`,
);
}
}

View File

@@ -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<void> {
this.log('hello world! (./src/commands/hello/world.ts)')
}
}

View File

@@ -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}`));