@salesforce/plugin-command-reference 1.6.3 → 1.6.4
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/oclif.manifest.json +109 -1
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -1 +1,109 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": "1.6.4",
|
|
3
|
+
"commands": {
|
|
4
|
+
"commandreference:generate": {
|
|
5
|
+
"id": "commandreference:generate",
|
|
6
|
+
"description": "generate the command reference guide located",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"usage": "<%= command.id %> [-d <string>] [-p <array>] [--hidden] [--erroronwarnings] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]",
|
|
9
|
+
"pluginName": "@salesforce/plugin-command-reference",
|
|
10
|
+
"pluginAlias": "@salesforce/plugin-command-reference",
|
|
11
|
+
"pluginType": "core",
|
|
12
|
+
"aliases": [],
|
|
13
|
+
"flags": {
|
|
14
|
+
"json": {
|
|
15
|
+
"name": "json",
|
|
16
|
+
"type": "boolean",
|
|
17
|
+
"description": "format output as json",
|
|
18
|
+
"allowNo": false
|
|
19
|
+
},
|
|
20
|
+
"loglevel": {
|
|
21
|
+
"name": "loglevel",
|
|
22
|
+
"type": "option",
|
|
23
|
+
"description": "logging level for this command invocation",
|
|
24
|
+
"required": false,
|
|
25
|
+
"helpValue": "(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)",
|
|
26
|
+
"multiple": false,
|
|
27
|
+
"options": [
|
|
28
|
+
"trace",
|
|
29
|
+
"debug",
|
|
30
|
+
"info",
|
|
31
|
+
"warn",
|
|
32
|
+
"error",
|
|
33
|
+
"fatal",
|
|
34
|
+
"TRACE",
|
|
35
|
+
"DEBUG",
|
|
36
|
+
"INFO",
|
|
37
|
+
"WARN",
|
|
38
|
+
"ERROR",
|
|
39
|
+
"FATAL"
|
|
40
|
+
],
|
|
41
|
+
"default": "warn"
|
|
42
|
+
},
|
|
43
|
+
"outputdir": {
|
|
44
|
+
"name": "outputdir",
|
|
45
|
+
"type": "option",
|
|
46
|
+
"char": "d",
|
|
47
|
+
"description": "output directory to put generated files",
|
|
48
|
+
"multiple": false,
|
|
49
|
+
"default": "./tmp/root"
|
|
50
|
+
},
|
|
51
|
+
"plugins": {
|
|
52
|
+
"name": "plugins",
|
|
53
|
+
"type": "option",
|
|
54
|
+
"char": "p",
|
|
55
|
+
"description": "comma separated list of plugin names to be part of the generation. Defaults to the oclif plugin in the current working directory",
|
|
56
|
+
"multiple": false
|
|
57
|
+
},
|
|
58
|
+
"hidden": {
|
|
59
|
+
"name": "hidden",
|
|
60
|
+
"type": "boolean",
|
|
61
|
+
"description": "show hidden commands",
|
|
62
|
+
"allowNo": false
|
|
63
|
+
},
|
|
64
|
+
"erroronwarnings": {
|
|
65
|
+
"name": "erroronwarnings",
|
|
66
|
+
"type": "boolean",
|
|
67
|
+
"description": "fail the command if there are any warnings",
|
|
68
|
+
"allowNo": false
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"args": {
|
|
72
|
+
"file": {
|
|
73
|
+
"name": "file"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"flagsConfig": {
|
|
77
|
+
"outputdir": {
|
|
78
|
+
"kind": "string",
|
|
79
|
+
"char": "d",
|
|
80
|
+
"description": "output directory to put generated files",
|
|
81
|
+
"default": "./tmp/root",
|
|
82
|
+
"input": [],
|
|
83
|
+
"multiple": false,
|
|
84
|
+
"type": "option"
|
|
85
|
+
},
|
|
86
|
+
"plugins": {
|
|
87
|
+
"kind": "array",
|
|
88
|
+
"char": "p",
|
|
89
|
+
"description": "comma separated list of plugin names to be part of the generation. Defaults to the oclif plugin in the current working directory",
|
|
90
|
+
"input": [],
|
|
91
|
+
"multiple": false,
|
|
92
|
+
"type": "option"
|
|
93
|
+
},
|
|
94
|
+
"hidden": {
|
|
95
|
+
"kind": "boolean",
|
|
96
|
+
"description": "show hidden commands",
|
|
97
|
+
"allowNo": false,
|
|
98
|
+
"type": "boolean"
|
|
99
|
+
},
|
|
100
|
+
"erroronwarnings": {
|
|
101
|
+
"kind": "boolean",
|
|
102
|
+
"description": "fail the command if there are any warnings",
|
|
103
|
+
"allowNo": false,
|
|
104
|
+
"type": "boolean"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-command-reference",
|
|
3
3
|
"description": "Generate the Salesforce CLI command reference guide",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/plugin-command-reference/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@salesforce/command": "^5.2
|
|
8
|
+
"@salesforce/command": "^5.3.2",
|
|
9
9
|
"@salesforce/core": "^3.33.1",
|
|
10
10
|
"@types/lodash.uniqby": "^4.7.7",
|
|
11
11
|
"chalk": "^3.0.0",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@salesforce/dev-config": "^3.1.0",
|
|
19
|
-
"@salesforce/dev-scripts": "^3.1.
|
|
20
|
-
"@salesforce/plugin-alias": "^2.
|
|
19
|
+
"@salesforce/dev-scripts": "^3.1.1",
|
|
20
|
+
"@salesforce/plugin-alias": "^2.2.2",
|
|
21
21
|
"@salesforce/plugin-signups": "^1.2.17",
|
|
22
22
|
"@salesforce/prettier-config": "^0.0.2",
|
|
23
23
|
"@semantic-release/changelog": "^5.0.0",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
28
28
|
"@typescript-eslint/parser": "^5.50.0",
|
|
29
29
|
"chai": "^4.3.7",
|
|
30
|
-
"eslint": "^8.
|
|
30
|
+
"eslint": "^8.34.0",
|
|
31
31
|
"eslint-config-prettier": "^8.6.0",
|
|
32
32
|
"eslint-config-salesforce": "^1.1.1",
|
|
33
33
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
34
34
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
35
35
|
"eslint-plugin-header": "^3.0.0",
|
|
36
|
-
"eslint-plugin-import": "2.27.
|
|
37
|
-
"eslint-plugin-jsdoc": "^39.
|
|
36
|
+
"eslint-plugin-import": "2.27.5",
|
|
37
|
+
"eslint-plugin-jsdoc": "^39.9.1",
|
|
38
38
|
"husky": "^7.0.4",
|
|
39
39
|
"mocha": "^9.1.3",
|
|
40
40
|
"nyc": "^15.1.0",
|
|
41
|
-
"oclif": "^3.
|
|
42
|
-
"prettier": "^2.8.
|
|
41
|
+
"oclif": "^3.6.5",
|
|
42
|
+
"prettier": "^2.8.4",
|
|
43
43
|
"pretty-quick": "^3.1.3",
|
|
44
44
|
"salesforce-alm": "^54.8.5",
|
|
45
45
|
"semantic-release": "^17.4.7",
|