feat: remove commands

This commit deletes all template commands and related tests from the CLI package. The template command implementation and its associated tests have been fully removed to make way for new feature implementation.
This commit is contained in:
p-sw 2024-06-06 19:05:41 +09:00
parent 3ab14abb58
commit 550e942162
4 changed files with 0 additions and 62 deletions

View File

@ -1,25 +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

@ -1,9 +0,0 @@
import {runCommand} from '@oclif/test'
import {expect} from 'chai'
describe('hello', () => {
it('runs hello', async () => {
const {stdout} = await runCommand('hello friend --from oclif')
expect(stdout).to.contain('hello friend from oclif!')
})
})

View File

@ -1,9 +0,0 @@
import {runCommand} from '@oclif/test'
import {expect} from 'chai'
describe('hello world', () => {
it('runs hello world cmd', async () => {
const {stdout} = await runCommand('hello world')
expect(stdout).to.contain('hello world!')
})
})