@salesforce/cli 2.35.4 → 2.35.5-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 +39 -30
- 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.5-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)
|
|
@@ -5299,7 +5299,7 @@ EXAMPLES
|
|
|
5299
5299
|
$ sf plugins
|
|
5300
5300
|
```
|
|
5301
5301
|
|
|
5302
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5302
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/index.ts)_
|
|
5303
5303
|
|
|
5304
5304
|
## `sf plugins discover`
|
|
5305
5305
|
|
|
@@ -5343,59 +5343,64 @@ EXAMPLES
|
|
|
5343
5343
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
5344
5344
|
```
|
|
5345
5345
|
|
|
5346
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5346
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/inspect.ts)_
|
|
5347
5347
|
|
|
5348
|
-
## `sf plugins
|
|
5348
|
+
## `sf plugins install PLUGIN`
|
|
5349
5349
|
|
|
5350
|
-
Installs a plugin into
|
|
5350
|
+
Installs a plugin into sf.
|
|
5351
5351
|
|
|
5352
5352
|
```
|
|
5353
5353
|
USAGE
|
|
5354
|
-
$ sf plugins install PLUGIN...
|
|
5354
|
+
$ sf plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
5355
5355
|
|
|
5356
5356
|
ARGUMENTS
|
|
5357
5357
|
PLUGIN... Plugin to install.
|
|
5358
5358
|
|
|
5359
5359
|
FLAGS
|
|
5360
|
-
-f, --force
|
|
5360
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
5361
5361
|
-h, --help Show CLI help.
|
|
5362
|
-
-s, --silent Silences
|
|
5363
|
-
-v, --verbose Show verbose
|
|
5362
|
+
-s, --silent Silences npm output.
|
|
5363
|
+
-v, --verbose Show verbose npm output.
|
|
5364
5364
|
|
|
5365
5365
|
GLOBAL FLAGS
|
|
5366
5366
|
--json Format output as json.
|
|
5367
5367
|
|
|
5368
5368
|
DESCRIPTION
|
|
5369
|
-
Installs a plugin into
|
|
5370
|
-
Can be installed from npm or a git url.
|
|
5369
|
+
Installs a plugin into sf.
|
|
5371
5370
|
|
|
5372
|
-
|
|
5371
|
+
Uses bundled npm executable to install plugins into /home/runner/.local/share/sf
|
|
5373
5372
|
|
|
5374
|
-
|
|
5375
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
5376
|
-
the CLI without the need to patch and update the whole CLI.
|
|
5373
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
5377
5374
|
|
|
5375
|
+
Use the SF_NPM_LOG_LEVEL environment variable to set the npm loglevel.
|
|
5376
|
+
Use the SF_NPM_REGISTRY environment variable to set the npm registry.
|
|
5378
5377
|
|
|
5379
5378
|
ALIASES
|
|
5380
5379
|
$ sf plugins add
|
|
5381
5380
|
|
|
5382
5381
|
EXAMPLES
|
|
5383
|
-
|
|
5382
|
+
Install a plugin from npm registry.
|
|
5383
|
+
|
|
5384
|
+
$ sf plugins install @salesforce/plugin-packaging
|
|
5385
|
+
|
|
5386
|
+
Install a plugin from a github url.
|
|
5387
|
+
|
|
5388
|
+
$ sf plugins install https://github.com/someuser/someplugin
|
|
5384
5389
|
|
|
5385
|
-
|
|
5390
|
+
Install a plugin from a github slug.
|
|
5386
5391
|
|
|
5387
|
-
|
|
5392
|
+
$ sf plugins install someuser/someplugin
|
|
5388
5393
|
```
|
|
5389
5394
|
|
|
5390
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5395
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/install.ts)_
|
|
5391
5396
|
|
|
5392
|
-
## `sf plugins
|
|
5397
|
+
## `sf plugins link PATH`
|
|
5393
5398
|
|
|
5394
5399
|
Links a plugin into the CLI for development.
|
|
5395
5400
|
|
|
5396
5401
|
```
|
|
5397
5402
|
USAGE
|
|
5398
|
-
$ sf plugins link
|
|
5403
|
+
$ sf plugins link PATH [-h] [--install] [-v]
|
|
5399
5404
|
|
|
5400
5405
|
ARGUMENTS
|
|
5401
5406
|
PATH [default: .] path to plugin
|
|
@@ -5417,7 +5422,7 @@ EXAMPLES
|
|
|
5417
5422
|
$ sf plugins link @salesforce/plugin-packaging
|
|
5418
5423
|
```
|
|
5419
5424
|
|
|
5420
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5425
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/link.ts)_
|
|
5421
5426
|
|
|
5422
5427
|
## `sf plugins reset`
|
|
5423
5428
|
|
|
@@ -5432,7 +5437,7 @@ FLAGS
|
|
|
5432
5437
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5433
5438
|
```
|
|
5434
5439
|
|
|
5435
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5440
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/reset.ts)_
|
|
5436
5441
|
|
|
5437
5442
|
## `sf plugins trust verify`
|
|
5438
5443
|
|
|
@@ -5462,13 +5467,13 @@ EXAMPLES
|
|
|
5462
5467
|
|
|
5463
5468
|
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.3.18/src/commands/plugins/trust/verify.ts)_
|
|
5464
5469
|
|
|
5465
|
-
## `sf plugins
|
|
5470
|
+
## `sf plugins uninstall [PLUGIN]`
|
|
5466
5471
|
|
|
5467
5472
|
Removes a plugin from the CLI.
|
|
5468
5473
|
|
|
5469
5474
|
```
|
|
5470
5475
|
USAGE
|
|
5471
|
-
$ sf plugins uninstall PLUGIN...
|
|
5476
|
+
$ sf plugins uninstall [PLUGIN...] [-h] [-v]
|
|
5472
5477
|
|
|
5473
5478
|
ARGUMENTS
|
|
5474
5479
|
PLUGIN... plugin to uninstall
|
|
@@ -5488,7 +5493,7 @@ EXAMPLES
|
|
|
5488
5493
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
5489
5494
|
```
|
|
5490
5495
|
|
|
5491
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5496
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/uninstall.ts)_
|
|
5492
5497
|
|
|
5493
5498
|
## `sf plugins update`
|
|
5494
5499
|
|
|
@@ -5506,7 +5511,7 @@ DESCRIPTION
|
|
|
5506
5511
|
Update installed plugins.
|
|
5507
5512
|
```
|
|
5508
5513
|
|
|
5509
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5514
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.6/src/commands/plugins/update.ts)_
|
|
5510
5515
|
|
|
5511
5516
|
## `sf project convert mdapi`
|
|
5512
5517
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.5-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.5-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.1",
|
|
17
17
|
"@oclif/plugin-help": "6.0.19",
|
|
18
18
|
"@oclif/plugin-not-found": "3.1.1",
|
|
19
|
-
"@oclif/plugin-plugins": "
|
|
19
|
+
"@oclif/plugin-plugins": "5.0.0-beta.6",
|
|
20
20
|
"@oclif/plugin-search": "1.0.20",
|
|
21
21
|
"@oclif/plugin-update": "4.2.1",
|
|
22
22
|
"@oclif/plugin-version": "2.0.15",
|
|
@@ -3696,20 +3696,19 @@
|
|
|
3696
3696
|
}
|
|
3697
3697
|
},
|
|
3698
3698
|
"node_modules/@oclif/plugin-plugins": {
|
|
3699
|
-
"version": "
|
|
3700
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-
|
|
3701
|
-
"integrity": "sha512-
|
|
3699
|
+
"version": "5.0.0-beta.6",
|
|
3700
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-5.0.0-beta.6.tgz",
|
|
3701
|
+
"integrity": "sha512-Vsh+4XRfF8MrexvBkyRZ4tVED+EjRDtQ8EJnnuQDBuRTui0tXYiqsq7xKaiDmYR80hOlxPzuR5eBYEGZGYLlFw==",
|
|
3702
3702
|
"license": "MIT",
|
|
3703
3703
|
"dependencies": {
|
|
3704
3704
|
"@oclif/core": "^3.25.2",
|
|
3705
3705
|
"chalk": "^5.3.0",
|
|
3706
3706
|
"debug": "^4.3.4",
|
|
3707
3707
|
"npm": "10.5.0",
|
|
3708
|
-
"npm-
|
|
3708
|
+
"npm-package-arg": "^11.0.1",
|
|
3709
|
+
"npm-run-path": "^5.2.0",
|
|
3709
3710
|
"semver": "^7.6.0",
|
|
3710
|
-
"
|
|
3711
|
-
"validate-npm-package-name": "^5.0.0",
|
|
3712
|
-
"yarn": "^1.22.21"
|
|
3711
|
+
"validate-npm-package-name": "^5.0.0"
|
|
3713
3712
|
},
|
|
3714
3713
|
"engines": {
|
|
3715
3714
|
"node": ">=18.0.0"
|
|
@@ -3918,6 +3917,21 @@
|
|
|
3918
3917
|
"node": "^18.17.0 || >=20.5.0"
|
|
3919
3918
|
}
|
|
3920
3919
|
},
|
|
3920
|
+
"node_modules/@oclif/plugin-plugins/node_modules/npm-run-path": {
|
|
3921
|
+
"version": "5.3.0",
|
|
3922
|
+
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
3923
|
+
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
3924
|
+
"license": "MIT",
|
|
3925
|
+
"dependencies": {
|
|
3926
|
+
"path-key": "^4.0.0"
|
|
3927
|
+
},
|
|
3928
|
+
"engines": {
|
|
3929
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
3930
|
+
},
|
|
3931
|
+
"funding": {
|
|
3932
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3933
|
+
}
|
|
3934
|
+
},
|
|
3921
3935
|
"node_modules/@oclif/plugin-plugins/node_modules/npm/node_modules/@colors/colors": {
|
|
3922
3936
|
"version": "1.5.0",
|
|
3923
3937
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
@@ -6743,6 +6757,18 @@
|
|
|
6743
6757
|
"inBundle": true,
|
|
6744
6758
|
"license": "ISC"
|
|
6745
6759
|
},
|
|
6760
|
+
"node_modules/@oclif/plugin-plugins/node_modules/path-key": {
|
|
6761
|
+
"version": "4.0.0",
|
|
6762
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
6763
|
+
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
6764
|
+
"license": "MIT",
|
|
6765
|
+
"engines": {
|
|
6766
|
+
"node": ">=12"
|
|
6767
|
+
},
|
|
6768
|
+
"funding": {
|
|
6769
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
6770
|
+
}
|
|
6771
|
+
},
|
|
6746
6772
|
"node_modules/@oclif/plugin-plugins/node_modules/supports-color": {
|
|
6747
6773
|
"version": "9.4.0",
|
|
6748
6774
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
|
|
@@ -15706,7 +15732,6 @@
|
|
|
15706
15732
|
"version": "7.0.1",
|
|
15707
15733
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
15708
15734
|
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
15709
|
-
"extraneous": true,
|
|
15710
15735
|
"license": "ISC",
|
|
15711
15736
|
"dependencies": {
|
|
15712
15737
|
"lru-cache": "^10.0.1"
|
|
@@ -15719,7 +15744,6 @@
|
|
|
15719
15744
|
"version": "10.2.0",
|
|
15720
15745
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
15721
15746
|
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
|
|
15722
|
-
"extraneous": true,
|
|
15723
15747
|
"license": "ISC",
|
|
15724
15748
|
"engines": {
|
|
15725
15749
|
"node": "14 || >=16.14"
|
|
@@ -19647,7 +19671,6 @@
|
|
|
19647
19671
|
"version": "11.0.1",
|
|
19648
19672
|
"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
|
|
19649
19673
|
"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
|
|
19650
|
-
"extraneous": true,
|
|
19651
19674
|
"license": "ISC",
|
|
19652
19675
|
"dependencies": {
|
|
19653
19676
|
"hosted-git-info": "^7.0.0",
|
|
@@ -26791,9 +26814,9 @@
|
|
|
26791
26814
|
}
|
|
26792
26815
|
},
|
|
26793
26816
|
"node_modules/typescript": {
|
|
26794
|
-
"version": "5.4.
|
|
26795
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.
|
|
26796
|
-
"integrity": "sha512
|
|
26817
|
+
"version": "5.4.3",
|
|
26818
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz",
|
|
26819
|
+
"integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==",
|
|
26797
26820
|
"dev": true,
|
|
26798
26821
|
"license": "Apache-2.0",
|
|
26799
26822
|
"bin": {
|
|
@@ -27508,20 +27531,6 @@
|
|
|
27508
27531
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
27509
27532
|
}
|
|
27510
27533
|
},
|
|
27511
|
-
"node_modules/yarn": {
|
|
27512
|
-
"version": "1.22.21",
|
|
27513
|
-
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz",
|
|
27514
|
-
"integrity": "sha512-ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg==",
|
|
27515
|
-
"hasInstallScript": true,
|
|
27516
|
-
"license": "BSD-2-Clause",
|
|
27517
|
-
"bin": {
|
|
27518
|
-
"yarn": "bin/yarn.js",
|
|
27519
|
-
"yarnpkg": "bin/yarn.js"
|
|
27520
|
-
},
|
|
27521
|
-
"engines": {
|
|
27522
|
-
"node": ">=4.0.0"
|
|
27523
|
-
}
|
|
27524
|
-
},
|
|
27525
27534
|
"node_modules/yarn-deduplicate": {
|
|
27526
27535
|
"version": "3.1.0",
|
|
27527
27536
|
"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.5-qa.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"@oclif/plugin-commands": "3.2.1",
|
|
144
144
|
"@oclif/plugin-help": "6.0.19",
|
|
145
145
|
"@oclif/plugin-not-found": "3.1.1",
|
|
146
|
-
"@oclif/plugin-plugins": "
|
|
146
|
+
"@oclif/plugin-plugins": "5.0.0-beta.6",
|
|
147
147
|
"@oclif/plugin-search": "1.0.20",
|
|
148
148
|
"@oclif/plugin-update": "4.2.1",
|
|
149
149
|
"@oclif/plugin-version": "2.0.15",
|