mirror of
https://github.com/status-im/sourcecred.git
synced 2025-02-05 01:04:53 +00:00
Upgrade oclif packages to latest (#542)
This required adding a [files property] to the package.json, otherwise oclif started complaining. Test plan: I manually tested both CLI commands, and they seem fine. [files property]: https://docs.npmjs.com/files/package.json#files
This commit is contained in:
parent
b61b8fbdb8
commit
ec5b76a83d
10
package.json
10
package.json
@ -3,9 +3,9 @@
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@oclif/command": "^1.4.20",
|
||||
"@oclif/config": "^1.6.17",
|
||||
"@oclif/plugin-help": "^1.2.10",
|
||||
"@oclif/command": "^1.4.36",
|
||||
"@oclif/config": "^1.6.33",
|
||||
"@oclif/plugin-help": "^2.0.5",
|
||||
"aphrodite": "^2.1.0",
|
||||
"chalk": "1.1.3",
|
||||
"commonmark": "^0.28.1",
|
||||
@ -122,6 +122,10 @@
|
||||
"./config/babel"
|
||||
]
|
||||
},
|
||||
"files": [
|
||||
"/bin",
|
||||
"/build"
|
||||
],
|
||||
"oclif": {
|
||||
"commands": "./bin/commands",
|
||||
"bin": "sourcecred",
|
||||
|
54
yarn.lock
54
yarn.lock
@ -16,27 +16,28 @@
|
||||
esutils "^2.0.2"
|
||||
js-tokens "^3.0.0"
|
||||
|
||||
"@oclif/command@^1.4.20":
|
||||
version "1.4.20"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.4.20.tgz#7368c9c9f7f596fc8efffd7ec89118feed5203d8"
|
||||
"@oclif/command@^1.4.30", "@oclif/command@^1.4.36":
|
||||
version "1.4.36"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.4.36.tgz#cca1e02d8264f34be9c2d692a3c81efc0de15fdf"
|
||||
dependencies:
|
||||
"@oclif/errors" "^1.0.8"
|
||||
"@oclif/parser" "^3.3.3"
|
||||
"@oclif/errors" "^1.1.2"
|
||||
"@oclif/parser" "^3.5.2"
|
||||
debug "^3.1.0"
|
||||
semver "^5.5.0"
|
||||
|
||||
"@oclif/config@^1.6.17":
|
||||
version "1.6.17"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.6.17.tgz#e9608f56e5acd49fcaf3bbfcc3e8818d81b1ba12"
|
||||
"@oclif/config@^1.6.33":
|
||||
version "1.6.33"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.6.33.tgz#61906143b30751d96dd29991c20c214bf4d9e4ff"
|
||||
dependencies:
|
||||
debug "^3.1.0"
|
||||
tslib "^1.9.2"
|
||||
|
||||
"@oclif/errors@^1.0.8":
|
||||
version "1.0.8"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.0.8.tgz#2f8239267506bb7c3f5fd776144c2686e5b7fff7"
|
||||
"@oclif/errors@^1.1.2":
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.1.2.tgz#2a54aae07a7655cc4523cae270d0a50cbc5dbef3"
|
||||
dependencies:
|
||||
clean-stack "^1.3.0"
|
||||
fs-extra "^6.0.0"
|
||||
fs-extra "^6.0.1"
|
||||
indent-string "^3.2.0"
|
||||
strip-ansi "^4.0.0"
|
||||
wrap-ansi "^3.0.1"
|
||||
@ -45,18 +46,19 @@
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91"
|
||||
|
||||
"@oclif/parser@^3.3.3":
|
||||
version "3.3.3"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.3.3.tgz#bfde499b836178eee2b6b29ccb7fb3f95851d3c6"
|
||||
"@oclif/parser@^3.5.2":
|
||||
version "3.5.3"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.5.3.tgz#fa5d0cc616a18240bcaefab02c7b7c9cb322656c"
|
||||
dependencies:
|
||||
"@oclif/linewrap" "^1.0.0"
|
||||
chalk "^2.4.0"
|
||||
chalk "^2.4.1"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@oclif/plugin-help@^1.2.10":
|
||||
version "1.2.10"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-1.2.10.tgz#c2bb2b8f09027bf5a55e96346b8525d4dcff8c3e"
|
||||
"@oclif/plugin-help@^2.0.5":
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-2.0.5.tgz#98084286099b44c8c6ed6214e3589f32525f4827"
|
||||
dependencies:
|
||||
"@oclif/command" "^1.4.20"
|
||||
"@oclif/command" "^1.4.30"
|
||||
chalk "^2.4.1"
|
||||
indent-string "^3.2.0"
|
||||
lodash.template "^4.4.0"
|
||||
@ -1481,7 +1483,7 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0:
|
||||
escape-string-regexp "^1.0.5"
|
||||
supports-color "^4.0.0"
|
||||
|
||||
chalk@^2.4.0, chalk@^2.4.1:
|
||||
chalk@^2.4.1:
|
||||
version "2.4.1"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
|
||||
dependencies:
|
||||
@ -3201,9 +3203,9 @@ fs-extra@^0.30.0:
|
||||
path-is-absolute "^1.0.0"
|
||||
rimraf "^2.2.8"
|
||||
|
||||
fs-extra@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.0.tgz#0f0afb290bb3deb87978da816fcd3c7797f3a817"
|
||||
fs-extra@^6.0.1:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b"
|
||||
dependencies:
|
||||
graceful-fs "^4.1.2"
|
||||
jsonfile "^4.0.0"
|
||||
@ -7557,6 +7559,10 @@ trim-right@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
||||
|
||||
tslib@^1.9.2, tslib@^1.9.3:
|
||||
version "1.9.3"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
|
||||
|
||||
tty-browserify@0.0.0:
|
||||
version "0.0.0"
|
||||
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
||||
|
Loading…
x
Reference in New Issue
Block a user