oclif 4.4.7 → 4.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -89,9 +89,9 @@ Creating a CLI:
|
|
|
89
89
|
$ npx oclif generate mynewcli
|
|
90
90
|
? npm package name (mynewcli): mynewcli
|
|
91
91
|
$ cd mynewcli
|
|
92
|
-
$ ./bin/run --version
|
|
92
|
+
$ ./bin/run.js --version
|
|
93
93
|
mynewcli/0.0.0 darwin-x64 node-v9.5.0
|
|
94
|
-
$ ./bin/run --help
|
|
94
|
+
$ ./bin/run.js --help
|
|
95
95
|
USAGE
|
|
96
96
|
$ mynewcli [COMMAND]
|
|
97
97
|
|
|
@@ -99,7 +99,7 @@ COMMANDS
|
|
|
99
99
|
hello
|
|
100
100
|
help display help for mynewcli
|
|
101
101
|
|
|
102
|
-
$ ./bin/run hello world
|
|
102
|
+
$ ./bin/run.js hello world
|
|
103
103
|
hello world! (./src/commands/hello/world.ts)
|
|
104
104
|
```
|
|
105
105
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oclif",
|
|
3
3
|
"description": "oclif: create your own CLI",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.9",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oclif": "bin/run.js"
|
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@aws-sdk/client-cloudfront": "^3.504.0",
|
|
12
12
|
"@aws-sdk/client-s3": "^3.504.0",
|
|
13
|
-
"@oclif/core": "^3.
|
|
13
|
+
"@oclif/core": "^3.19.1",
|
|
14
14
|
"@oclif/plugin-help": "^6.0.12",
|
|
15
15
|
"@oclif/plugin-not-found": "^3.0.9",
|
|
16
16
|
"@oclif/plugin-warn-if-update-available": "^3.0.9",
|
|
17
17
|
"async-retry": "^1.3.3",
|
|
18
18
|
"change-case": "^4",
|
|
19
19
|
"debug": "^4.3.3",
|
|
20
|
-
"eslint-plugin-perfectionist": "^2.1.0",
|
|
21
20
|
"find-yarn-workspace-root": "^2.0.0",
|
|
22
21
|
"fs-extra": "^8.1",
|
|
23
22
|
"github-slugger": "^1.5.0",
|
|
@@ -49,16 +48,17 @@
|
|
|
49
48
|
"conventional-changelog-cli": "^2.2.2",
|
|
50
49
|
"eslint": "^8.50.0",
|
|
51
50
|
"eslint-config-oclif": "^5.0.0",
|
|
52
|
-
"eslint-config-oclif-typescript": "^3.0.
|
|
51
|
+
"eslint-config-oclif-typescript": "^3.0.44",
|
|
53
52
|
"eslint-config-prettier": "^9.0.0",
|
|
54
53
|
"fancy-test": "^3.0.10",
|
|
54
|
+
"eslint-plugin-perfectionist": "^2.1.0",
|
|
55
55
|
"globby": "^11.1.0",
|
|
56
56
|
"husky": "^8.0.3",
|
|
57
57
|
"lint-staged": "^14.0.1",
|
|
58
58
|
"lodash.clonedeep": "^4.5.0",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"nyc": "^15.1.0",
|
|
61
|
-
"prettier": "^3.2.
|
|
61
|
+
"prettier": "^3.2.5",
|
|
62
62
|
"shelljs": "^0.8.5",
|
|
63
63
|
"shx": "^0.3.4",
|
|
64
64
|
"ts-node": "^10.7.0",
|