@salesforce/plugin-info 2.6.42-dev.6 → 2.6.43
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 +20 -51
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@salesforce/plugin-info) [](https://npmjs.org/package/@salesforce/plugin-info) [](https://raw.githubusercontent.com/salesforcecli/plugin-info/main/LICENSE.txt)
|
|
4
4
|
|
|
5
|
-
# Foo 10
|
|
6
|
-
|
|
7
5
|
## Learn about the plugin-info
|
|
8
6
|
|
|
9
7
|
Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
|
|
@@ -83,29 +81,20 @@ sfdx plugins
|
|
|
83
81
|
|
|
84
82
|
## `sfdx doctor`
|
|
85
83
|
|
|
86
|
-
|
|
84
|
+
When you run the doctor command without parameters, it first displays a diagnostic overview of your environment. It then writes a detailed diagnosis to a JSON file in the current directory. Use the --outputdir to specify a different directory. To run diagnostic tests on a specific plugin, use the --plugin parameter. If the plugin isn't listening to the doctor, then you get a warning.
|
|
87
85
|
|
|
88
86
|
```
|
|
89
87
|
USAGE
|
|
90
|
-
$ sfdx doctor
|
|
91
|
-
|
|
92
|
-
FLAGS
|
|
93
|
-
-c, --command=<value> Command to run in debug mode; results are written to a log file.
|
|
94
|
-
-d, --output-dir=<value> Directory to save all created files rather than the current working directory.
|
|
95
|
-
-i, --create-issue Create a new issue on our GitHub repo and attach all diagnostic results.
|
|
96
|
-
-p, --plugin=<value> Specific plugin on which to run diagnostics.
|
|
88
|
+
$ sfdx doctor
|
|
97
89
|
|
|
98
|
-
|
|
99
|
-
--
|
|
90
|
+
OPTIONS
|
|
91
|
+
-c, --command=command
|
|
92
|
+
-d, --output-dir=output-dir
|
|
93
|
+
-i, --create-issue
|
|
94
|
+
-p, --plugin=plugin
|
|
95
|
+
--json Format output as json.
|
|
100
96
|
|
|
101
97
|
DESCRIPTION
|
|
102
|
-
Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.
|
|
103
|
-
|
|
104
|
-
When you run the doctor command without parameters, it first displays a diagnostic overview of your environment. It
|
|
105
|
-
then writes a detailed diagnosis to a JSON file in the current directory. Use the --outputdir to specify a different
|
|
106
|
-
directory. To run diagnostic tests on a specific plugin, use the --plugin parameter. If the plugin isn't listening to
|
|
107
|
-
the doctor, then you get a warning.
|
|
108
|
-
|
|
109
98
|
Use the --command parameter to run a specific command in debug mode; the doctor writes both stdout and stderr to
|
|
110
99
|
\*.log files that you can provide to Salesforce Customer Support or attach to a GitHub issue.
|
|
111
100
|
|
|
@@ -114,57 +103,37 @@ DESCRIPTION
|
|
|
114
103
|
|
|
115
104
|
EXAMPLES
|
|
116
105
|
Run CLI doctor diagnostics:
|
|
117
|
-
|
|
118
|
-
$ sfdx doctor
|
|
119
|
-
|
|
106
|
+
sfdx doctor
|
|
120
107
|
Run CLI doctor diagnostics and the specified command, and write the debug output to a file:
|
|
121
|
-
|
|
122
|
-
$ sfdx doctor --command "force:org:list --all"
|
|
123
|
-
|
|
108
|
+
sfdx doctor --command "force:org:list --all"
|
|
124
109
|
Run CLI doctor diagnostics for a specific plugin:
|
|
125
|
-
|
|
126
|
-
$ sfdx doctor --plugin @salesforce/plugin-source
|
|
110
|
+
sfdx doctor --plugin @salesforce/plugin-source
|
|
127
111
|
```
|
|
128
112
|
|
|
129
|
-
_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/
|
|
113
|
+
_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/v2.3.2-t.0/src/commands/doctor.ts)_
|
|
130
114
|
|
|
131
115
|
## `sfdx info:releasenotes:display`
|
|
132
116
|
|
|
133
|
-
Display Salesforce CLI release notes on the command line.
|
|
134
|
-
|
|
135
117
|
```
|
|
136
118
|
USAGE
|
|
137
|
-
$ sfdx info:releasenotes:display
|
|
119
|
+
$ sfdx info:releasenotes:display
|
|
138
120
|
|
|
139
|
-
|
|
140
|
-
-v, --version
|
|
141
|
-
|
|
142
|
-
GLOBAL FLAGS
|
|
143
|
-
--json Format output as json.
|
|
144
|
-
|
|
145
|
-
DESCRIPTION
|
|
146
|
-
Display Salesforce CLI release notes on the command line.
|
|
147
|
-
|
|
148
|
-
By default, this command displays release notes for the currently installed CLI version on your computer. Use the
|
|
149
|
-
--version flag to view release notes for a different release.
|
|
121
|
+
OPTIONS
|
|
122
|
+
-v, --version=version
|
|
123
|
+
--json Format output as json.
|
|
150
124
|
|
|
151
125
|
ALIASES
|
|
152
126
|
$ sfdx whatsnew
|
|
153
127
|
|
|
154
128
|
EXAMPLES
|
|
155
129
|
Display release notes for the currently installed CLI version:
|
|
156
|
-
|
|
157
|
-
$ sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
|
|
158
|
-
|
|
130
|
+
sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
|
|
159
131
|
Display release notes for CLI version 7.120.0:
|
|
160
|
-
|
|
161
|
-
$ sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
|
|
162
|
-
|
|
132
|
+
sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
|
|
163
133
|
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
|
|
164
|
-
|
|
165
|
-
$ sfdx info:releasenotes:display --version latest
|
|
134
|
+
sfdx info:releasenotes:display --version latest
|
|
166
135
|
```
|
|
167
136
|
|
|
168
|
-
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/
|
|
137
|
+
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/v2.3.2-t.0/src/commands/info/releasenotes/display.ts)_
|
|
169
138
|
|
|
170
139
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-info",
|
|
3
3
|
"description": "Plugin for accessing cli info from the command line",
|
|
4
|
-
"version": "2.6.
|
|
4
|
+
"version": "2.6.43",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"main": "lib/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@oclif/core": "^2.15.0",
|
|
10
10
|
"@salesforce/core": "^5.2.7",
|
|
11
11
|
"@salesforce/kit": "^3.0.9",
|
|
12
|
-
"@salesforce/sf-plugins-core": "^3.1.
|
|
12
|
+
"@salesforce/sf-plugins-core": "^3.1.22",
|
|
13
13
|
"got": "^11.8.6",
|
|
14
14
|
"marked": "^4.3.0",
|
|
15
15
|
"marked-terminal": "^4.2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/fs-extra": "^9.0.13",
|
|
31
31
|
"@types/marked": "^4.0.8",
|
|
32
32
|
"@types/marked-terminal": "^3.1.3",
|
|
33
|
-
"@types/semver": "^7.5.
|
|
33
|
+
"@types/semver": "^7.5.2",
|
|
34
34
|
"@types/sinon-chai": "^3.2.9",
|
|
35
35
|
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
36
36
|
"@typescript-eslint/parser": "^5.62.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"husky": "^7.0.4",
|
|
48
48
|
"mocha": "^9.1.3",
|
|
49
49
|
"nyc": "^15.1.0",
|
|
50
|
-
"oclif": "^3.
|
|
50
|
+
"oclif": "^3.14.0",
|
|
51
51
|
"prettier": "^2.8.8",
|
|
52
52
|
"pretty-quick": "^3.1.0",
|
|
53
53
|
"shx": "0.3.4",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"sinon-chai": "^3.7.0",
|
|
56
56
|
"ts-node": "^10.4.0",
|
|
57
57
|
"typescript": "^4.9.5",
|
|
58
|
-
"wireit": "^0.
|
|
58
|
+
"wireit": "^0.14.0"
|
|
59
59
|
},
|
|
60
60
|
"config": {},
|
|
61
61
|
"engines": {
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
}
|
|
233
233
|
},
|
|
234
234
|
"sfdx": {
|
|
235
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.6.
|
|
236
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.6.
|
|
235
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.6.43.crt",
|
|
236
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.6.43.sig"
|
|
237
237
|
}
|
|
238
238
|
}
|