Skip to content

Commit

Permalink
fix: bump deps and fix compile errors (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
peternhale committed Nov 18, 2021
1 parent 6839b1f commit 63674a8
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 18 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
"@oclif/color": "^0.x",
"@oclif/command": "^1.5.12",
"@oclif/errors": "^1.2.2",
"@oclif/command": "^1.8.3",
"@oclif/errors": "^1.3.5",
"chalk": "^4.1.0",
"cli-ux": "^5.2.1",
"cli-ux": "^5.6.3",
"debug": "^4.1.0",
"fs-extra": "^9.0",
"http-call": "^5.2.2",
Expand All @@ -21,10 +21,10 @@
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@oclif/config": "^1.12.11",
"@oclif/config": "^1.17.1",
"@oclif/dev-cli": "^1.21.3",
"@oclif/plugin-help": "^3.1.0",
"@oclif/test": "^1.2.4",
"@oclif/plugin-help": "^3.2.5",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^9.0",
"@types/mocha": "^8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Plugins from '../../plugins'
import {sortBy} from '../../util'

export default class PluginsIndex extends Command {
static flags = {
static flags: flags.Input<any> = {
core: flags.boolean({description: 'show core plugins'}),
}

Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/inspect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class PluginsInspect extends Command {
{name: 'plugin', description: 'plugin to inspect', required: true, default: '.'},
];

static flags = {
static flags: flags.Input<any> = {
help: flags.help({char: 'h'}),
verbose: flags.boolean({char: 'v'}),
};
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ e.g. If you have a core plugin that has a 'hello' command, installing a user-ins
{name: 'plugin', description: 'plugin to install', required: true},
];

static flags = {
static flags: flags.Input<any> = {
help: flags.help({char: 'h'}),
verbose: flags.boolean({char: 'v'}),
force: flags.boolean({
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ e.g. If you have a user-installed or core plugin that has a 'hello' command, ins

static args = [{name: 'path', description: 'path to plugin', required: true, default: '.'}]

static flags = {
static flags: flags.Input<any> = {
help: flags.help({char: 'h'}),
verbose: flags.boolean({char: 'v'}),
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/uninstall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class PluginsUninstall extends Command {

static args = [{name: 'plugin', description: 'plugin to uninstall'}]

static flags = {
static flags: flags.Input<any> = {
help: flags.help({char: 'h'}),
verbose: flags.boolean({char: 'v'}),
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class PluginsUpdate extends Command {

static description = 'update installed plugins'

static flags = {
static flags: flags.Input<any> = {
help: flags.help({char: 'h'}),
verbose: flags.boolean({char: 'v'}),
}
Expand Down
105 changes: 99 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
supports-color "^5.4.0"
tslib "^1"

"@oclif/command@^1.5.12", "@oclif/command@^1.5.20", "@oclif/command@^1.6.0", "@oclif/command@^1.8.0":
"@oclif/command@^1.5.20", "@oclif/command@^1.6.0", "@oclif/command@^1.8.0":
version "1.8.0"
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.0.tgz#c1a499b10d26e9d1a611190a81005589accbb339"
integrity sha512-5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw==
Expand All @@ -253,7 +253,19 @@
debug "^4.1.1"
semver "^7.3.2"

"@oclif/config@^1.12.11", "@oclif/config@^1.15.1", "@oclif/config@^1.17.0":
"@oclif/command@^1.8.3":
version "1.8.3"
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.3.tgz#1f8bc2c4ecf94b6659a5134d95da179e1dffad9e"
integrity sha512-OGjrhdVgTT2TAAj/2RrdXjwxaDoTm16c2LfAzrta1xIFe6/XhgQIYDmeRN/RptQoZQBX8e9Vv2JoQq+TbghJmw==
dependencies:
"@oclif/config" "^1.15.1"
"@oclif/errors" "^1.3.5"
"@oclif/parser" "^3.8.5"
"@oclif/plugin-help" "^3.2.4"
debug "^4.1.1"
semver "^7.3.2"

"@oclif/config@^1.15.1", "@oclif/config@^1.17.0":
version "1.17.0"
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.0.tgz#ba8639118633102a7e481760c50054623d09fcab"
integrity sha512-Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA==
Expand All @@ -265,6 +277,18 @@
is-wsl "^2.1.1"
tslib "^2.0.0"

"@oclif/config@^1.17.1":
version "1.17.1"
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.1.tgz#383515f6715b91d8df5db8108214e93bb46e86ca"
integrity sha512-UqV5qsN2np96TNlJspSNlRl7CpFmxYSrB0iLe3XV9NDkbFEE5prGP++h6w6xOR/FL3QV7BoqrbwGuJdJdFbidw==
dependencies:
"@oclif/errors" "^1.3.3"
"@oclif/parser" "^3.8.6"
debug "^4.1.1"
globby "^11.0.1"
is-wsl "^2.1.1"
tslib "^2.0.0"

"@oclif/dev-cli@^1.21.3":
version "1.26.0"
resolved "https://registry.yarnpkg.com/@oclif/dev-cli/-/dev-cli-1.26.0.tgz#e3ec294b362c010ffc8948003d3770955c7951fd"
Expand Down Expand Up @@ -295,6 +319,17 @@
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"

"@oclif/errors@^1.3.5":
version "1.3.5"
resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c"
integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ==
dependencies:
clean-stack "^3.0.0"
fs-extra "^8.1"
indent-string "^4.0.0"
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"

"@oclif/linewrap@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91"
Expand All @@ -310,7 +345,17 @@
chalk "^2.4.2"
tslib "^1.9.3"

"@oclif/plugin-help@^3", "@oclif/plugin-help@^3.1.0", "@oclif/plugin-help@^3.2.0":
"@oclif/parser@^3.8.5", "@oclif/parser@^3.8.6":
version "3.8.6"
resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.6.tgz#d5a108af9c708a051cc6b1d27d47359d75f41236"
integrity sha512-tXb0NKgSgNxmf6baN6naK+CCwOueaFk93FG9u202U7mTBHUKsioOUlw1SG/iPi9aJM3WE4pHLXmty59pci0OEw==
dependencies:
"@oclif/errors" "^1.2.2"
"@oclif/linewrap" "^1.0.0"
chalk "^4.1.0"
tslib "^2.0.0"

"@oclif/plugin-help@^3", "@oclif/plugin-help@^3.2.0":
version "3.2.2"
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.2.tgz#063ee08cee556573a5198fbdfdaa32796deba0ed"
integrity sha512-SPZ8U8PBYK0n4srFjCLedk0jWU4QlxgEYLCXIBShJgOwPhTTQknkUlsEwaMIevvCU4iCQZhfMX+D8Pz5GZjFgA==
Expand All @@ -326,12 +371,28 @@
widest-line "^3.1.0"
wrap-ansi "^4.0.0"

"@oclif/plugin-help@^3.2.4", "@oclif/plugin-help@^3.2.5":
version "3.2.5"
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.5.tgz#dab0f5e655971b2c49dd80ee472f97b6e69a1297"
integrity sha512-fjkZTstvacCPicF2oaa3Lc+Yw3ocKEaW6x6O7doVqMLuoMUX6wBOQ+f1a3VFzO1fErqNeFPDlUlVUhwq9yMzQg==
dependencies:
"@oclif/command" "^1.8.3"
"@oclif/config" "^1.17.1"
"@oclif/errors" "^1.3.5"
chalk "^4.1.0"
indent-string "^4.0.0"
lodash "^4.17.21"
string-width "^4.2.0"
strip-ansi "^6.0.0"
widest-line "^3.1.0"
wrap-ansi "^4.0.0"

"@oclif/screen@^1.0.3":
version "1.0.4"
resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.4.tgz#b740f68609dfae8aa71c3a6cab15d816407ba493"
integrity sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw==

"@oclif/test@^1.2.4":
"@oclif/test@^1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@oclif/test/-/test-1.2.8.tgz#a5b2ebd747832217d9af65ac30b58780c4c17c5e"
integrity sha512-HCh0qPge1JCqTEw4s2ScnicEZd4Ro4/0VvdjpsfCiX6fuDV53fRZ2uqLTgxKGHrVoqOZnVrRZHyhFyEsFGs+zQ==
Expand Down Expand Up @@ -917,6 +978,38 @@ cli-ux@^5.2.1:
supports-hyperlinks "^2.1.0"
tslib "^2.0.0"

cli-ux@^5.6.3:
version "5.6.3"
resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-5.6.3.tgz#eecdb2e0261171f2b28f2be6b18c490291c3a287"
integrity sha512-/oDU4v8BiDjX2OKcSunGH0iGDiEtj2rZaGyqNuv9IT4CgcSMyVWAMfn0+rEHaOc4n9ka78B0wo1+N1QX89f7mw==
dependencies:
"@oclif/command" "^1.6.0"
"@oclif/errors" "^1.2.1"
"@oclif/linewrap" "^1.0.0"
"@oclif/screen" "^1.0.3"
ansi-escapes "^4.3.0"
ansi-styles "^4.2.0"
cardinal "^2.1.1"
chalk "^4.1.0"
clean-stack "^3.0.0"
cli-progress "^3.4.0"
extract-stack "^2.0.0"
fs-extra "^8.1"
hyperlinker "^1.0.0"
indent-string "^4.0.0"
is-wsl "^2.2.0"
js-yaml "^3.13.1"
lodash "^4.17.11"
natural-orderby "^2.0.1"
object-treeify "^1.1.4"
password-prompt "^1.1.2"
semver "^7.3.2"
string-width "^4.2.0"
strip-ansi "^6.0.0"
supports-color "^8.1.0"
supports-hyperlinks "^2.1.0"
tslib "^2.0.0"

cliui@^7.0.2:
version "7.0.4"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
Expand Down Expand Up @@ -2430,7 +2523,7 @@ lodash.zip@^4.2.0:
resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020"
integrity sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=

lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19:
lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
Expand Down Expand Up @@ -3495,7 +3588,7 @@ strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==

supports-color@8.1.1:
supports-color@8.1.1, supports-color@^8.1.0:
version "8.1.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
Expand Down

0 comments on commit 63674a8

Please sign in to comment.