@oclif/plugin-help 6.0.15 → 6.0.17
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/lib/commands/help.d.ts +1 -1
- package/lib/commands/help.js +1 -1
- package/npm-shrinkwrap.json +16647 -0
- package/oclif.lock +1622 -1440
- package/oclif.manifest.json +3 -3
- package/package.json +16 -12
package/oclif.manifest.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"help": {
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {
|
|
6
|
-
"
|
|
6
|
+
"command": {
|
|
7
7
|
"description": "Command to show help for.",
|
|
8
|
-
"name": "
|
|
8
|
+
"name": "command",
|
|
9
9
|
"required": false
|
|
10
10
|
}
|
|
11
11
|
},
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
]
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
|
-
"version": "6.0.
|
|
42
|
+
"version": "6.0.17"
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-help",
|
|
3
3
|
"description": "Standard help for oclif.",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.17",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-help/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
8
|
+
"@oclif/core": "^3.21.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@commitlint/config-conventional": "^
|
|
11
|
+
"@commitlint/config-conventional": "^18",
|
|
12
12
|
"@oclif/prettier-config": "^0.2.1",
|
|
13
13
|
"@oclif/test": "^3.2.1",
|
|
14
14
|
"@types/chai": "^4.3.11",
|
|
15
15
|
"@types/mocha": "^10.0.6",
|
|
16
16
|
"@types/node": "^18",
|
|
17
17
|
"chai": "^4.4.1",
|
|
18
|
-
"commitlint": "^
|
|
18
|
+
"commitlint": "^18",
|
|
19
19
|
"eslint": "^8.57.0",
|
|
20
20
|
"eslint-config-oclif": "^5.0.3",
|
|
21
21
|
"eslint-config-oclif-typescript": "^3.0.48",
|
|
22
22
|
"eslint-config-prettier": "^9.1.0",
|
|
23
|
-
"husky": "^
|
|
24
|
-
"lint-staged": "^
|
|
23
|
+
"husky": "^9",
|
|
24
|
+
"lint-staged": "^15",
|
|
25
25
|
"mocha": "^10.3.0",
|
|
26
26
|
"oclif": "^4.4.19",
|
|
27
27
|
"prettier": "^3.2.5",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"oclif.manifest.json",
|
|
38
38
|
"/lib",
|
|
39
|
-
"
|
|
39
|
+
"npm-shrinkwrap.json",
|
|
40
|
+
"oclif.lock"
|
|
40
41
|
],
|
|
41
42
|
"homepage": "https://github.com/oclif/plugin-help",
|
|
42
43
|
"keywords": [
|
|
@@ -52,13 +53,16 @@
|
|
|
52
53
|
"repository": "oclif/plugin-help",
|
|
53
54
|
"scripts": {
|
|
54
55
|
"build": "shx rm -rf lib && tsc",
|
|
56
|
+
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json oclif.lock",
|
|
57
|
+
"compile": "tsc",
|
|
55
58
|
"lint": "eslint . --ext .ts",
|
|
56
|
-
"postpack": "
|
|
59
|
+
"postpack": "yarn run clean",
|
|
57
60
|
"posttest": "yarn lint",
|
|
58
|
-
"prepack": "yarn
|
|
59
|
-
"prepare": "husky
|
|
60
|
-
"pretest": "yarn build && tsc --noEmit",
|
|
61
|
-
"test": "mocha --forbid-only \"test/**/*.test.ts\""
|
|
61
|
+
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap && oclif lock",
|
|
62
|
+
"prepare": "husky && yarn build",
|
|
63
|
+
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
|
|
64
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
65
|
+
"version": "oclif readme && git add README.md"
|
|
62
66
|
},
|
|
63
67
|
"type": "module",
|
|
64
68
|
"types": "./lib/index.d.ts"
|