@oclif/plugin-help 6.0.21 → 6.1.0
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 +1 -1
- package/lib/commands/help.d.ts +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +12 -13
- package/npm-shrinkwrap.json +0 -10832
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ DESCRIPTION
|
|
|
27
27
|
Display help for oclif.
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
_See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.0
|
|
30
|
+
_See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.1.0/src/commands/help.ts)_
|
|
31
31
|
<!-- commandsstop -->
|
|
32
32
|
|
|
33
33
|
# Contributing
|
package/lib/commands/help.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
2
|
export default class HelpCommand extends Command {
|
|
3
3
|
static args: {
|
|
4
|
-
command: import("@oclif/core/
|
|
4
|
+
command: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
5
5
|
};
|
|
6
6
|
static description: string;
|
|
7
7
|
static flags: {
|
|
8
|
-
'nested-commands': import("@oclif/core/
|
|
8
|
+
'nested-commands': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
9
9
|
};
|
|
10
10
|
static strict: boolean;
|
|
11
11
|
run(): Promise<void>;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-help",
|
|
3
3
|
"description": "Standard help for oclif.",
|
|
4
|
-
"version": "6.0
|
|
4
|
+
"version": "6.1.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-help/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^
|
|
8
|
+
"@oclif/core": "^4.0.0-beta.13"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@commitlint/config-conventional": "^
|
|
11
|
+
"@commitlint/config-conventional": "^19",
|
|
12
12
|
"@oclif/prettier-config": "^0.2.1",
|
|
13
|
-
"@oclif/test": "^
|
|
13
|
+
"@oclif/test": "^4",
|
|
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": "^19",
|
|
19
19
|
"eslint": "^8.57.0",
|
|
20
|
-
"eslint-config-oclif": "^5.
|
|
21
|
-
"eslint-config-oclif-typescript": "^3.1.
|
|
20
|
+
"eslint-config-oclif": "^5.2.0",
|
|
21
|
+
"eslint-config-oclif-typescript": "^3.1.7",
|
|
22
22
|
"eslint-config-prettier": "^9.1.0",
|
|
23
23
|
"husky": "^9",
|
|
24
24
|
"lint-staged": "^15",
|
|
25
25
|
"mocha": "^10.4.0",
|
|
26
|
-
"oclif": "^4.
|
|
26
|
+
"oclif": "^4.11.1",
|
|
27
27
|
"prettier": "^3.2.5",
|
|
28
28
|
"shx": "^0.3.4",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
|
-
"typescript": "^5.4.
|
|
30
|
+
"typescript": "^5.4.5"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=18.0.0"
|
|
@@ -35,8 +35,7 @@
|
|
|
35
35
|
"exports": "./lib/index.js",
|
|
36
36
|
"files": [
|
|
37
37
|
"oclif.manifest.json",
|
|
38
|
-
"/lib"
|
|
39
|
-
"npm-shrinkwrap.json"
|
|
38
|
+
"/lib"
|
|
40
39
|
],
|
|
41
40
|
"homepage": "https://github.com/oclif/plugin-help",
|
|
42
41
|
"keywords": [
|
|
@@ -52,12 +51,12 @@
|
|
|
52
51
|
"repository": "oclif/plugin-help",
|
|
53
52
|
"scripts": {
|
|
54
53
|
"build": "shx rm -rf lib && tsc",
|
|
55
|
-
"clean": "shx rm -f oclif.manifest.json
|
|
54
|
+
"clean": "shx rm -f oclif.manifest.json",
|
|
56
55
|
"compile": "tsc",
|
|
57
56
|
"lint": "eslint . --ext .ts",
|
|
58
57
|
"postpack": "yarn run clean",
|
|
59
58
|
"posttest": "yarn lint",
|
|
60
|
-
"prepack": "yarn build && oclif manifest && oclif readme
|
|
59
|
+
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
61
60
|
"prepare": "husky && yarn build",
|
|
62
61
|
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
|
|
63
62
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|