Skip to content

Commit

Permalink
make types available
Browse files Browse the repository at this point in the history
  • Loading branch information
james-hu committed Mar 9, 2024
1 parent d4169fc commit 110beda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/simple-cli-prj-v2/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ hello friend from oclif! (./src/commands/hello/index.ts)
}

async run(): Promise<void> {
const options = await withHelpHandled(this, () => this.parse());
const options = await withHelpHandled(this, () => this.parse(Hello));

const {args, flags} = options

Expand Down
2 changes: 1 addition & 1 deletion test/simple-cli-prj-v3/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ hello friend from oclif! (./src/commands/hello/index.ts)
}

async run(): Promise<void> {
const options = await withHelpHandled(this, () => this.parse());
const options = await withHelpHandled(this, () => this.parse(Hello));

const {args, flags} = options

Expand Down

0 comments on commit 110beda

Please sign in to comment.