@salesforce/cli 2.35.1 → 2.35.2-qa.0
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 +35 -30
- package/npm-shrinkwrap.json +34 -27
- 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.35.
|
|
27
|
+
@salesforce/cli/2.35.2-qa.0 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -139,11 +139,11 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
139
139
|
- [`sf plugins`](#sf-plugins)
|
|
140
140
|
- [`sf plugins discover`](#sf-plugins-discover)
|
|
141
141
|
- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin)
|
|
142
|
-
- [`sf plugins
|
|
143
|
-
- [`sf plugins
|
|
142
|
+
- [`sf plugins install PLUGIN`](#sf-plugins-install-plugin)
|
|
143
|
+
- [`sf plugins link PATH`](#sf-plugins-link-path)
|
|
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-plugins-uninstall-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/5.0.0-beta.5/src/commands/plugins/index.ts)_
|
|
5279
5279
|
|
|
5280
5280
|
## `sf plugins discover`
|
|
5281
5281
|
|
|
@@ -5319,59 +5319,64 @@ EXAMPLES
|
|
|
5319
5319
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
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/5.0.0-beta.5/src/commands/plugins/inspect.ts)_
|
|
5323
5323
|
|
|
5324
|
-
## `sf plugins
|
|
5324
|
+
## `sf plugins install PLUGIN`
|
|
5325
5325
|
|
|
5326
|
-
Installs a plugin into
|
|
5326
|
+
Installs a plugin into sf.
|
|
5327
5327
|
|
|
5328
5328
|
```
|
|
5329
5329
|
USAGE
|
|
5330
|
-
$ sf plugins install PLUGIN...
|
|
5330
|
+
$ sf plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
5331
5331
|
|
|
5332
5332
|
ARGUMENTS
|
|
5333
5333
|
PLUGIN... Plugin to install.
|
|
5334
5334
|
|
|
5335
5335
|
FLAGS
|
|
5336
|
-
-f, --force
|
|
5336
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
5337
5337
|
-h, --help Show CLI help.
|
|
5338
|
-
-s, --silent Silences
|
|
5339
|
-
-v, --verbose Show verbose
|
|
5338
|
+
-s, --silent Silences npm output.
|
|
5339
|
+
-v, --verbose Show verbose npm output.
|
|
5340
5340
|
|
|
5341
5341
|
GLOBAL FLAGS
|
|
5342
5342
|
--json Format output as json.
|
|
5343
5343
|
|
|
5344
5344
|
DESCRIPTION
|
|
5345
|
-
Installs a plugin into
|
|
5346
|
-
Can be installed from npm or a git url.
|
|
5345
|
+
Installs a plugin into sf.
|
|
5347
5346
|
|
|
5348
|
-
|
|
5347
|
+
Uses bundled npm executable to install plugins into /home/runner/.local/share/sf
|
|
5349
5348
|
|
|
5350
|
-
|
|
5351
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
5352
|
-
the CLI without the need to patch and update the whole CLI.
|
|
5349
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
5353
5350
|
|
|
5351
|
+
Use the SF_NPM_LOG_LEVEL environment variable to set the npm loglevel.
|
|
5352
|
+
Use the SF_NPM_REGISTRY environment variable to set the npm registry.
|
|
5354
5353
|
|
|
5355
5354
|
ALIASES
|
|
5356
5355
|
$ sf plugins add
|
|
5357
5356
|
|
|
5358
5357
|
EXAMPLES
|
|
5359
|
-
|
|
5358
|
+
Install a plugin from npm registry.
|
|
5359
|
+
|
|
5360
|
+
$ sf plugins install @salesforce/plugin-packaging
|
|
5361
|
+
|
|
5362
|
+
Install a plugin from a github url.
|
|
5363
|
+
|
|
5364
|
+
$ sf plugins install https://github.com/someuser/someplugin
|
|
5360
5365
|
|
|
5361
|
-
|
|
5366
|
+
Install a plugin from a github slug.
|
|
5362
5367
|
|
|
5363
|
-
|
|
5368
|
+
$ sf plugins install someuser/someplugin
|
|
5364
5369
|
```
|
|
5365
5370
|
|
|
5366
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5371
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/install.ts)_
|
|
5367
5372
|
|
|
5368
|
-
## `sf plugins
|
|
5373
|
+
## `sf plugins link PATH`
|
|
5369
5374
|
|
|
5370
5375
|
Links a plugin into the CLI for development.
|
|
5371
5376
|
|
|
5372
5377
|
```
|
|
5373
5378
|
USAGE
|
|
5374
|
-
$ sf plugins link
|
|
5379
|
+
$ sf plugins link PATH [-h] [--install] [-v]
|
|
5375
5380
|
|
|
5376
5381
|
ARGUMENTS
|
|
5377
5382
|
PATH [default: .] path to plugin
|
|
@@ -5393,7 +5398,7 @@ EXAMPLES
|
|
|
5393
5398
|
$ sf plugins link @salesforce/plugin-packaging
|
|
5394
5399
|
```
|
|
5395
5400
|
|
|
5396
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5401
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/link.ts)_
|
|
5397
5402
|
|
|
5398
5403
|
## `sf plugins reset`
|
|
5399
5404
|
|
|
@@ -5408,7 +5413,7 @@ FLAGS
|
|
|
5408
5413
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5409
5414
|
```
|
|
5410
5415
|
|
|
5411
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5416
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/reset.ts)_
|
|
5412
5417
|
|
|
5413
5418
|
## `sf plugins trust verify`
|
|
5414
5419
|
|
|
@@ -5438,13 +5443,13 @@ EXAMPLES
|
|
|
5438
5443
|
|
|
5439
5444
|
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.3.17/src/commands/plugins/trust/verify.ts)_
|
|
5440
5445
|
|
|
5441
|
-
## `sf plugins
|
|
5446
|
+
## `sf plugins uninstall [PLUGIN]`
|
|
5442
5447
|
|
|
5443
5448
|
Removes a plugin from the CLI.
|
|
5444
5449
|
|
|
5445
5450
|
```
|
|
5446
5451
|
USAGE
|
|
5447
|
-
$ sf plugins uninstall PLUGIN...
|
|
5452
|
+
$ sf plugins uninstall [PLUGIN...] [-h] [-v]
|
|
5448
5453
|
|
|
5449
5454
|
ARGUMENTS
|
|
5450
5455
|
PLUGIN... plugin to uninstall
|
|
@@ -5464,7 +5469,7 @@ EXAMPLES
|
|
|
5464
5469
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
5465
5470
|
```
|
|
5466
5471
|
|
|
5467
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5472
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/uninstall.ts)_
|
|
5468
5473
|
|
|
5469
5474
|
## `sf plugins update`
|
|
5470
5475
|
|
|
@@ -5482,7 +5487,7 @@ DESCRIPTION
|
|
|
5482
5487
|
Update installed plugins.
|
|
5483
5488
|
```
|
|
5484
5489
|
|
|
5485
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5490
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/update.ts)_
|
|
5486
5491
|
|
|
5487
5492
|
## `sf project convert mdapi`
|
|
5488
5493
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.2-qa.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.35.
|
|
9
|
+
"version": "2.35.2-qa.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@oclif/plugin-commands": "3.2.0",
|
|
17
17
|
"@oclif/plugin-help": "6.0.18",
|
|
18
18
|
"@oclif/plugin-not-found": "3.1.0",
|
|
19
|
-
"@oclif/plugin-plugins": "
|
|
19
|
+
"@oclif/plugin-plugins": "beta",
|
|
20
20
|
"@oclif/plugin-search": "1.0.20",
|
|
21
21
|
"@oclif/plugin-update": "4.2.0",
|
|
22
22
|
"@oclif/plugin-version": "2.0.14",
|
|
@@ -3695,20 +3695,17 @@
|
|
|
3695
3695
|
}
|
|
3696
3696
|
},
|
|
3697
3697
|
"node_modules/@oclif/plugin-plugins": {
|
|
3698
|
-
"version": "
|
|
3699
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-4.3.8.tgz",
|
|
3700
|
-
"integrity": "sha512-QU0a4VFmA+Wb/kIUsBKw14KMbH4bHdz5ejwvqql89DumtsUzPOekSHgEzODC2ESZnDWx+h5pD9NPg4lAMPMbxQ==",
|
|
3698
|
+
"version": "5.0.0-beta.5",
|
|
3701
3699
|
"license": "MIT",
|
|
3702
3700
|
"dependencies": {
|
|
3703
3701
|
"@oclif/core": "^3.25.2",
|
|
3704
3702
|
"chalk": "^5.3.0",
|
|
3705
3703
|
"debug": "^4.3.4",
|
|
3706
3704
|
"npm": "10.2.4",
|
|
3707
|
-
"npm-
|
|
3705
|
+
"npm-package-arg": "^11.0.1",
|
|
3706
|
+
"npm-run-path": "^5.2.0",
|
|
3708
3707
|
"semver": "^7.6.0",
|
|
3709
|
-
"
|
|
3710
|
-
"validate-npm-package-name": "^5.0.0",
|
|
3711
|
-
"yarn": "^1.22.21"
|
|
3708
|
+
"validate-npm-package-name": "^5.0.0"
|
|
3712
3709
|
},
|
|
3713
3710
|
"engines": {
|
|
3714
3711
|
"node": ">=18.0.0"
|
|
@@ -3919,6 +3916,21 @@
|
|
|
3919
3916
|
"node": "^18.17.0 || >=20.5.0"
|
|
3920
3917
|
}
|
|
3921
3918
|
},
|
|
3919
|
+
"node_modules/@oclif/plugin-plugins/node_modules/npm-run-path": {
|
|
3920
|
+
"version": "5.3.0",
|
|
3921
|
+
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
3922
|
+
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
3923
|
+
"license": "MIT",
|
|
3924
|
+
"dependencies": {
|
|
3925
|
+
"path-key": "^4.0.0"
|
|
3926
|
+
},
|
|
3927
|
+
"engines": {
|
|
3928
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
3929
|
+
},
|
|
3930
|
+
"funding": {
|
|
3931
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3932
|
+
}
|
|
3933
|
+
},
|
|
3922
3934
|
"node_modules/@oclif/plugin-plugins/node_modules/npm/node_modules/@colors/colors": {
|
|
3923
3935
|
"version": "1.5.0",
|
|
3924
3936
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
@@ -6892,6 +6904,18 @@
|
|
|
6892
6904
|
"inBundle": true,
|
|
6893
6905
|
"license": "ISC"
|
|
6894
6906
|
},
|
|
6907
|
+
"node_modules/@oclif/plugin-plugins/node_modules/path-key": {
|
|
6908
|
+
"version": "4.0.0",
|
|
6909
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
6910
|
+
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
6911
|
+
"license": "MIT",
|
|
6912
|
+
"engines": {
|
|
6913
|
+
"node": ">=12"
|
|
6914
|
+
},
|
|
6915
|
+
"funding": {
|
|
6916
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
6917
|
+
}
|
|
6918
|
+
},
|
|
6895
6919
|
"node_modules/@oclif/plugin-plugins/node_modules/supports-color": {
|
|
6896
6920
|
"version": "9.4.0",
|
|
6897
6921
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
|
|
@@ -15584,7 +15608,6 @@
|
|
|
15584
15608
|
"version": "7.0.1",
|
|
15585
15609
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
15586
15610
|
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
15587
|
-
"extraneous": true,
|
|
15588
15611
|
"license": "ISC",
|
|
15589
15612
|
"dependencies": {
|
|
15590
15613
|
"lru-cache": "^10.0.1"
|
|
@@ -15597,7 +15620,6 @@
|
|
|
15597
15620
|
"version": "10.2.0",
|
|
15598
15621
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
15599
15622
|
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
|
|
15600
|
-
"extraneous": true,
|
|
15601
15623
|
"license": "ISC",
|
|
15602
15624
|
"engines": {
|
|
15603
15625
|
"node": "14 || >=16.14"
|
|
@@ -19525,7 +19547,6 @@
|
|
|
19525
19547
|
"version": "11.0.1",
|
|
19526
19548
|
"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
|
|
19527
19549
|
"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
|
|
19528
|
-
"extraneous": true,
|
|
19529
19550
|
"license": "ISC",
|
|
19530
19551
|
"dependencies": {
|
|
19531
19552
|
"hosted-git-info": "^7.0.0",
|
|
@@ -27386,20 +27407,6 @@
|
|
|
27386
27407
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
27387
27408
|
}
|
|
27388
27409
|
},
|
|
27389
|
-
"node_modules/yarn": {
|
|
27390
|
-
"version": "1.22.21",
|
|
27391
|
-
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz",
|
|
27392
|
-
"integrity": "sha512-ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg==",
|
|
27393
|
-
"hasInstallScript": true,
|
|
27394
|
-
"license": "BSD-2-Clause",
|
|
27395
|
-
"bin": {
|
|
27396
|
-
"yarn": "bin/yarn.js",
|
|
27397
|
-
"yarnpkg": "bin/yarn.js"
|
|
27398
|
-
},
|
|
27399
|
-
"engines": {
|
|
27400
|
-
"node": ">=4.0.0"
|
|
27401
|
-
}
|
|
27402
|
-
},
|
|
27403
27410
|
"node_modules/yarn-deduplicate": {
|
|
27404
27411
|
"version": "3.1.0",
|
|
27405
27412
|
"resolved": "https://registry.npmjs.org/yarn-deduplicate/-/yarn-deduplicate-3.1.0.tgz",
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.35.
|
|
4
|
+
"version": "2.35.2-qa.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"@oclif/plugin-commands": "3.2.0",
|
|
143
143
|
"@oclif/plugin-help": "6.0.18",
|
|
144
144
|
"@oclif/plugin-not-found": "3.1.0",
|
|
145
|
-
"@oclif/plugin-plugins": "
|
|
145
|
+
"@oclif/plugin-plugins": "beta",
|
|
146
146
|
"@oclif/plugin-search": "1.0.20",
|
|
147
147
|
"@oclif/plugin-update": "4.2.0",
|
|
148
148
|
"@oclif/plugin-version": "2.0.14",
|