Skip to content

Commit

Permalink
fix: bump deps (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
peternhale authored Dec 7, 2021
1 parent 68453c1 commit 04c903d
Show file tree
Hide file tree
Showing 4 changed files with 163 additions and 49 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-commands/issues",
"dependencies": {
"@oclif/core": "^1.0.1",
"cli-ux": "^5.6.3",
"@oclif/core": "^1.0.8",
"cli-ux": "^6.0.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"@oclif/plugin-help": "^5.1.0",
"@oclif/test": "^1.2.1",
"@oclif/plugin-help": "^5.1.7",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.1.6",
"@types/lodash": "^4.14.117",
"@types/mocha": "^8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class Commands extends Command {
command.summary = (command.summary || (command.description || '').split(EOL)[0])
command.hidden = Boolean(command.hidden)
command.usage = (command.usage || '')
return command
return command as unknown as Record<string, unknown>
}), {
id: {
header: 'Command',
Expand Down
8 changes: 4 additions & 4 deletions test/commands/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ describe('commands', () => {
.command(['commands'])
.it('runs commands', (ctx: { stdout: any }) => {
expect(ctx.stdout).to.equal(
' Command Summary \n' +
' ──────── ────────────────────────────── \n' +
' commands list all the commands \n' +
' help display help for oclif-example \n',
' Command Summary \n' +
' ──────── ────────────────────────────── \n' +
' commands list all the commands \n' +
' help Display help for oclif-example. \n',
)
})

Expand Down
Loading

0 comments on commit 04c903d

Please sign in to comment.