Skip to content

Commit

Permalink
fix: bump deps (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
peternhale committed Dec 1, 2021
1 parent 66fe9d6 commit 97ec486
Show file tree
Hide file tree
Showing 3 changed files with 642 additions and 190 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -5,17 +5,17 @@
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-help/issues",
"dependencies": {
"@oclif/core": "^1.0.3"
"@oclif/core": "^1.0.4"
},
"devDependencies": {
"@oclif/plugin-plugins": "^1.10.1",
"@oclif/plugin-plugins": "^2.0.2",
"@oclif/test": "core-v1",
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.0",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"mocha": "^8.2.1",
"oclif": "^2.0.0-main.10",
"shx": "^0.3.3",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/help.ts
Expand Up @@ -16,7 +16,7 @@ export default class HelpCommand extends Command {

static strict = false

async run() {
async run(): Promise<void> {
const {flags, argv} = await this.parse(HelpCommand)
const help = new Help(this.config, {all: flags['nested-commands']})
await help.showHelp(argv)
Expand Down

0 comments on commit 97ec486

Please sign in to comment.