@salesforce/cli 2.17.12 → 2.17.14
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 -14
- package/npm-shrinkwrap.json +4246 -1108
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.17.
|
|
27
|
+
@salesforce/cli/2.17.14 linux-x64 node-v20.9.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -5118,7 +5118,7 @@ EXAMPLES
|
|
|
5118
5118
|
$ sf plugins
|
|
5119
5119
|
```
|
|
5120
5120
|
|
|
5121
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5121
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/index.ts)_
|
|
5122
5122
|
|
|
5123
5123
|
## `sf plugins discover`
|
|
5124
5124
|
|
|
@@ -5159,10 +5159,10 @@ DESCRIPTION
|
|
|
5159
5159
|
Displays installation properties of a plugin.
|
|
5160
5160
|
|
|
5161
5161
|
EXAMPLES
|
|
5162
|
-
$ sf plugins
|
|
5162
|
+
$ sf plugins inspect myplugin
|
|
5163
5163
|
```
|
|
5164
5164
|
|
|
5165
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5165
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/inspect.ts)_
|
|
5166
5166
|
|
|
5167
5167
|
## `sf plugins:install PLUGIN...`
|
|
5168
5168
|
|
|
@@ -5181,6 +5181,9 @@ FLAGS
|
|
|
5181
5181
|
-s, --silent Silences yarn output.
|
|
5182
5182
|
-v, --verbose Show verbose yarn output.
|
|
5183
5183
|
|
|
5184
|
+
GLOBAL FLAGS
|
|
5185
|
+
--json Format output as json.
|
|
5186
|
+
|
|
5184
5187
|
DESCRIPTION
|
|
5185
5188
|
Installs a plugin into the CLI.
|
|
5186
5189
|
Can be installed from npm or a git url.
|
|
@@ -5196,14 +5199,14 @@ ALIASES
|
|
|
5196
5199
|
$ sf plugins add
|
|
5197
5200
|
|
|
5198
5201
|
EXAMPLES
|
|
5199
|
-
$ sf plugins
|
|
5202
|
+
$ sf plugins install myplugin
|
|
5200
5203
|
|
|
5201
|
-
$ sf plugins
|
|
5204
|
+
$ sf plugins install https://github.com/someuser/someplugin
|
|
5202
5205
|
|
|
5203
|
-
$ sf plugins
|
|
5206
|
+
$ sf plugins install someuser/someplugin
|
|
5204
5207
|
```
|
|
5205
5208
|
|
|
5206
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5209
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/install.ts)_
|
|
5207
5210
|
|
|
5208
5211
|
## `sf plugins:link PLUGIN`
|
|
5209
5212
|
|
|
@@ -5230,10 +5233,10 @@ DESCRIPTION
|
|
|
5230
5233
|
|
|
5231
5234
|
|
|
5232
5235
|
EXAMPLES
|
|
5233
|
-
$ sf plugins
|
|
5236
|
+
$ sf plugins link myplugin
|
|
5234
5237
|
```
|
|
5235
5238
|
|
|
5236
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5239
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/link.ts)_
|
|
5237
5240
|
|
|
5238
5241
|
## `sf plugins reset`
|
|
5239
5242
|
|
|
@@ -5244,7 +5247,7 @@ USAGE
|
|
|
5244
5247
|
$ sf plugins reset
|
|
5245
5248
|
```
|
|
5246
5249
|
|
|
5247
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5250
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/reset.ts)_
|
|
5248
5251
|
|
|
5249
5252
|
## `sf plugins trust verify`
|
|
5250
5253
|
|
|
@@ -5272,7 +5275,7 @@ EXAMPLES
|
|
|
5272
5275
|
$ sf plugins trust verify --npm @scope/npmName
|
|
5273
5276
|
```
|
|
5274
5277
|
|
|
5275
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.0.
|
|
5278
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.0.2/src/commands/plugins/trust/verify.ts)_
|
|
5276
5279
|
|
|
5277
5280
|
## `sf plugins:uninstall PLUGIN...`
|
|
5278
5281
|
|
|
@@ -5295,9 +5298,12 @@ DESCRIPTION
|
|
|
5295
5298
|
ALIASES
|
|
5296
5299
|
$ sf plugins unlink
|
|
5297
5300
|
$ sf plugins remove
|
|
5301
|
+
|
|
5302
|
+
EXAMPLES
|
|
5303
|
+
$ sf plugins uninstall myplugin
|
|
5298
5304
|
```
|
|
5299
5305
|
|
|
5300
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5306
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/uninstall.ts)_
|
|
5301
5307
|
|
|
5302
5308
|
## `sf plugins update`
|
|
5303
5309
|
|
|
@@ -5315,7 +5321,7 @@ DESCRIPTION
|
|
|
5315
5321
|
Update installed plugins.
|
|
5316
5322
|
```
|
|
5317
5323
|
|
|
5318
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5324
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/update.ts)_
|
|
5319
5325
|
|
|
5320
5326
|
## `sf project convert mdapi`
|
|
5321
5327
|
|