Skip to content

Commit

Permalink
chore: add help message
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultleouay committed Nov 26, 2024
1 parent f00f05e commit a495aa7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/commands/buildgraph/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ import { run } from './run.ts'

export const buildgraph = new Command<GlobalOptions>()
.description('buildgraph')
.action((function () {
this.showHelp()
}))
.command('run', run)
3 changes: 3 additions & 0 deletions src/commands/debug/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ import { debugConfig } from './debug-config.ts'

export const debug = new Command<GlobalOptions>()
.description('debug')
.action((function () {
this.showHelp()
}))
.command('config', debugConfig)
3 changes: 3 additions & 0 deletions src/commands/engine/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import { version } from './version.ts'

export const engine = new Command<GlobalOptions>()
.description('engine')
.action((function () {
this.showHelp()
}))
.command('install', install)
.command('update', update)
.command('setup', setup)
Expand Down
3 changes: 3 additions & 0 deletions src/commands/workflow/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ import { exec } from './exec.ts'

export const workflow = new Command<GlobalOptions>()
.description('workflow')
.action((function () {
this.showHelp()
}))
.command('exec', exec)

0 comments on commit a495aa7

Please sign in to comment.