@salesforce/cli 2.17.13 → 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 +16 -13
- package/npm-shrinkwrap.json +4242 -1104
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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
|
|
|
@@ -5199,14 +5199,14 @@ ALIASES
|
|
|
5199
5199
|
$ sf plugins add
|
|
5200
5200
|
|
|
5201
5201
|
EXAMPLES
|
|
5202
|
-
$ sf plugins
|
|
5202
|
+
$ sf plugins install myplugin
|
|
5203
5203
|
|
|
5204
|
-
$ sf plugins
|
|
5204
|
+
$ sf plugins install https://github.com/someuser/someplugin
|
|
5205
5205
|
|
|
5206
|
-
$ sf plugins
|
|
5206
|
+
$ sf plugins install someuser/someplugin
|
|
5207
5207
|
```
|
|
5208
5208
|
|
|
5209
|
-
_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)_
|
|
5210
5210
|
|
|
5211
5211
|
## `sf plugins:link PLUGIN`
|
|
5212
5212
|
|
|
@@ -5233,10 +5233,10 @@ DESCRIPTION
|
|
|
5233
5233
|
|
|
5234
5234
|
|
|
5235
5235
|
EXAMPLES
|
|
5236
|
-
$ sf plugins
|
|
5236
|
+
$ sf plugins link myplugin
|
|
5237
5237
|
```
|
|
5238
5238
|
|
|
5239
|
-
_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)_
|
|
5240
5240
|
|
|
5241
5241
|
## `sf plugins reset`
|
|
5242
5242
|
|
|
@@ -5247,7 +5247,7 @@ USAGE
|
|
|
5247
5247
|
$ sf plugins reset
|
|
5248
5248
|
```
|
|
5249
5249
|
|
|
5250
|
-
_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)_
|
|
5251
5251
|
|
|
5252
5252
|
## `sf plugins trust verify`
|
|
5253
5253
|
|
|
@@ -5298,9 +5298,12 @@ DESCRIPTION
|
|
|
5298
5298
|
ALIASES
|
|
5299
5299
|
$ sf plugins unlink
|
|
5300
5300
|
$ sf plugins remove
|
|
5301
|
+
|
|
5302
|
+
EXAMPLES
|
|
5303
|
+
$ sf plugins uninstall myplugin
|
|
5301
5304
|
```
|
|
5302
5305
|
|
|
5303
|
-
_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)_
|
|
5304
5307
|
|
|
5305
5308
|
## `sf plugins update`
|
|
5306
5309
|
|
|
@@ -5318,7 +5321,7 @@ DESCRIPTION
|
|
|
5318
5321
|
Update installed plugins.
|
|
5319
5322
|
```
|
|
5320
5323
|
|
|
5321
|
-
_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)_
|
|
5322
5325
|
|
|
5323
5326
|
## `sf project convert mdapi`
|
|
5324
5327
|
|