@salesforce/cli 2.34.1-qa.0 → 2.34.2
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 +17 -17
- package/npm-shrinkwrap.json +297 -454
- package/oclif.manifest.json +2 -1
- package/package.json +5 -5
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.34.
|
|
27
|
+
@salesforce/cli/2.34.2 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -140,10 +140,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
140
140
|
- [`sf plugins discover`](#sf-plugins-discover)
|
|
141
141
|
- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin)
|
|
142
142
|
- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin)
|
|
143
|
-
- [`sf plugins
|
|
143
|
+
- [`sf plugins:link PLUGIN`](#sf-pluginslink-plugin)
|
|
144
144
|
- [`sf plugins reset`](#sf-plugins-reset)
|
|
145
145
|
- [`sf plugins trust verify`](#sf-plugins-trust-verify)
|
|
146
|
-
- [`sf plugins
|
|
146
|
+
- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin)
|
|
147
147
|
- [`sf plugins update`](#sf-plugins-update)
|
|
148
148
|
- [`sf project convert mdapi`](#sf-project-convert-mdapi)
|
|
149
149
|
- [`sf project convert source`](#sf-project-convert-source)
|
|
@@ -5275,7 +5275,7 @@ EXAMPLES
|
|
|
5275
5275
|
$ sf plugins
|
|
5276
5276
|
```
|
|
5277
5277
|
|
|
5278
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5278
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/index.ts)_
|
|
5279
5279
|
|
|
5280
5280
|
## `sf plugins discover`
|
|
5281
5281
|
|
|
@@ -5319,7 +5319,7 @@ EXAMPLES
|
|
|
5319
5319
|
$ sf plugins inspect myplugin
|
|
5320
5320
|
```
|
|
5321
5321
|
|
|
5322
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5322
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/inspect.ts)_
|
|
5323
5323
|
|
|
5324
5324
|
## `sf plugins:install PLUGIN...`
|
|
5325
5325
|
|
|
@@ -5333,10 +5333,10 @@ ARGUMENTS
|
|
|
5333
5333
|
PLUGIN... Plugin to install.
|
|
5334
5334
|
|
|
5335
5335
|
FLAGS
|
|
5336
|
-
-f, --force
|
|
5336
|
+
-f, --force Run yarn install with force flag.
|
|
5337
5337
|
-h, --help Show CLI help.
|
|
5338
|
-
-s, --silent Silences
|
|
5339
|
-
-v, --verbose Show verbose
|
|
5338
|
+
-s, --silent Silences yarn output.
|
|
5339
|
+
-v, --verbose Show verbose yarn output.
|
|
5340
5340
|
|
|
5341
5341
|
GLOBAL FLAGS
|
|
5342
5342
|
--json Format output as json.
|
|
@@ -5363,15 +5363,15 @@ EXAMPLES
|
|
|
5363
5363
|
$ sf plugins install someuser/someplugin
|
|
5364
5364
|
```
|
|
5365
5365
|
|
|
5366
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5366
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/install.ts)_
|
|
5367
5367
|
|
|
5368
|
-
## `sf plugins
|
|
5368
|
+
## `sf plugins:link PLUGIN`
|
|
5369
5369
|
|
|
5370
5370
|
Links a plugin into the CLI for development.
|
|
5371
5371
|
|
|
5372
5372
|
```
|
|
5373
5373
|
USAGE
|
|
5374
|
-
$ sf plugins link
|
|
5374
|
+
$ sf plugins link PLUGIN
|
|
5375
5375
|
|
|
5376
5376
|
ARGUMENTS
|
|
5377
5377
|
PATH [default: .] path to plugin
|
|
@@ -5393,7 +5393,7 @@ EXAMPLES
|
|
|
5393
5393
|
$ sf plugins link myplugin
|
|
5394
5394
|
```
|
|
5395
5395
|
|
|
5396
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5396
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/link.ts)_
|
|
5397
5397
|
|
|
5398
5398
|
## `sf plugins reset`
|
|
5399
5399
|
|
|
@@ -5408,7 +5408,7 @@ FLAGS
|
|
|
5408
5408
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5409
5409
|
```
|
|
5410
5410
|
|
|
5411
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5411
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/reset.ts)_
|
|
5412
5412
|
|
|
5413
5413
|
## `sf plugins trust verify`
|
|
5414
5414
|
|
|
@@ -5438,13 +5438,13 @@ EXAMPLES
|
|
|
5438
5438
|
|
|
5439
5439
|
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.3.16/src/commands/plugins/trust/verify.ts)_
|
|
5440
5440
|
|
|
5441
|
-
## `sf plugins
|
|
5441
|
+
## `sf plugins:uninstall PLUGIN...`
|
|
5442
5442
|
|
|
5443
5443
|
Removes a plugin from the CLI.
|
|
5444
5444
|
|
|
5445
5445
|
```
|
|
5446
5446
|
USAGE
|
|
5447
|
-
$ sf plugins uninstall
|
|
5447
|
+
$ sf plugins uninstall PLUGIN...
|
|
5448
5448
|
|
|
5449
5449
|
ARGUMENTS
|
|
5450
5450
|
PLUGIN... plugin to uninstall
|
|
@@ -5464,7 +5464,7 @@ EXAMPLES
|
|
|
5464
5464
|
$ sf plugins uninstall myplugin
|
|
5465
5465
|
```
|
|
5466
5466
|
|
|
5467
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5467
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/uninstall.ts)_
|
|
5468
5468
|
|
|
5469
5469
|
## `sf plugins update`
|
|
5470
5470
|
|
|
@@ -5482,7 +5482,7 @@ DESCRIPTION
|
|
|
5482
5482
|
Update installed plugins.
|
|
5483
5483
|
```
|
|
5484
5484
|
|
|
5485
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5485
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.3.6/src/commands/plugins/update.ts)_
|
|
5486
5486
|
|
|
5487
5487
|
## `sf project convert mdapi`
|
|
5488
5488
|
|