@jayree/sfdx-plugin-manifest 3.2.7 → 3.2.8
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/CHANGELOG.md +9 -0
- package/README.md +26 -27
- package/npm-shrinkwrap.json +25 -200
- package/oclif.lock +30 -64
- package/oclif.manifest.json +1 -1
- package/package.json +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [3.2.8](https://github.com/jayree/sfdx-plugin-manifest/compare/3.2.7...3.2.8) (2024-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @salesforce/core from 7.3.5 to 7.3.6 ([#1303](https://github.com/jayree/sfdx-plugin-manifest/issues/1303)) ([e5a6a92](https://github.com/jayree/sfdx-plugin-manifest/commit/e5a6a922fc89086255922e33d46d93fb13cf80ea))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [3.2.7](https://github.com/jayree/sfdx-plugin-manifest/compare/3.2.6...3.2.7) (2024-05-10)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -2,32 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.
|
|
4
4
|
|
|
5
|
-
[](https://developer.salesforce.com/tools/salesforcecli)
|
|
6
6
|
[](https://npmjs.org/package/@jayree/sfdx-plugin-manifest)
|
|
7
|
-
[](https://github.com/jayree/sfdx-plugin-manifest/actions/workflows/release.yml)
|
|
8
7
|
[](https://npmjs.org/package/@jayree/sfdx-plugin-manifest)
|
|
9
8
|
[](https://github.com/jayree-plugins/sfdx-plugin-manifest/blob/main/package.json)
|
|
10
9
|
|
|
11
10
|
## Install
|
|
12
11
|
|
|
13
12
|
```bash
|
|
14
|
-
|
|
13
|
+
sf plugins:install @jayree/sfdx-plugin-manifest
|
|
15
14
|
```
|
|
16
15
|
|
|
17
16
|
## Commands
|
|
18
17
|
|
|
19
18
|
<!-- commands -->
|
|
20
|
-
* [`
|
|
21
|
-
* [`
|
|
22
|
-
* [`
|
|
19
|
+
* [`sf jayree manifest cleanup`](#sf-jayree-manifest-cleanup)
|
|
20
|
+
* [`sf jayree manifest generate`](#sf-jayree-manifest-generate)
|
|
21
|
+
* [`sf jayree manifest git diff REF1 [REF2]`](#sf-jayree-manifest-git-diff-ref1-ref2)
|
|
23
22
|
|
|
24
|
-
### `
|
|
23
|
+
### `sf jayree manifest cleanup`
|
|
25
24
|
|
|
26
25
|
Removes those tags from a manifest file that are present in a second manifest file.
|
|
27
26
|
|
|
28
27
|
```
|
|
29
28
|
USAGE
|
|
30
|
-
$
|
|
29
|
+
$ sf jayree manifest cleanup -f <value> [--json] [--flags-dir <value>] [-x <value>]
|
|
31
30
|
|
|
32
31
|
FLAGS
|
|
33
32
|
-f, --file=<value> (required) Path to the second 'cleanup' manifest file.
|
|
@@ -45,18 +44,18 @@ DESCRIPTION
|
|
|
45
44
|
If the 'cleanup' manifest file (--file) doesn't exist, a template file is created, which can then be modified.
|
|
46
45
|
|
|
47
46
|
EXAMPLES
|
|
48
|
-
$
|
|
47
|
+
$ sf jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
|
49
48
|
```
|
|
50
49
|
|
|
51
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
|
50
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.8/src/commands/jayree/manifest/cleanup.ts)_
|
|
52
51
|
|
|
53
|
-
### `
|
|
52
|
+
### `sf jayree manifest generate`
|
|
54
53
|
|
|
55
54
|
Generate a complete manifest file form the specified org.
|
|
56
55
|
|
|
57
56
|
```
|
|
58
57
|
USAGE
|
|
59
|
-
$
|
|
58
|
+
$ sf jayree manifest generate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-q <value>] [-c] [-w]
|
|
60
59
|
[--include-flow-versions] [-f <value>] [--exclude-managed | --exclude-all]
|
|
61
60
|
|
|
62
61
|
FLAGS
|
|
@@ -81,21 +80,21 @@ DESCRIPTION
|
|
|
81
80
|
Use this command to generate a manifest file based on an existing org.
|
|
82
81
|
|
|
83
82
|
EXAMPLES
|
|
84
|
-
$
|
|
83
|
+
$ sf jayree manifest generate --targetusername myOrg@example.com
|
|
85
84
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
86
85
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
87
86
|
```
|
|
88
87
|
|
|
89
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
|
88
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.8/src/commands/jayree/manifest/generate.ts)_
|
|
90
89
|
|
|
91
|
-
### `
|
|
90
|
+
### `sf jayree manifest git diff REF1 [REF2]`
|
|
92
91
|
|
|
93
92
|
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or delete based on changes in your git history.
|
|
94
93
|
|
|
95
94
|
```
|
|
96
95
|
USAGE
|
|
97
|
-
$
|
|
98
|
-
|
|
96
|
+
$ sf jayree manifest git diff REF1 [REF2] [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>] [--output-dir
|
|
97
|
+
<value>] [--destructive-changes-only]
|
|
99
98
|
|
|
100
99
|
ARGUMENTS
|
|
101
100
|
REF1 Base commit or branch.
|
|
@@ -121,36 +120,36 @@ DESCRIPTION
|
|
|
121
120
|
You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
|
|
122
121
|
|
|
123
122
|
ALIASES
|
|
124
|
-
$
|
|
123
|
+
$ sf jayree manifest beta git diff
|
|
125
124
|
|
|
126
125
|
EXAMPLES
|
|
127
126
|
Uses the changes between two arbitrary <commit>.
|
|
128
127
|
|
|
129
|
-
$
|
|
130
|
-
$
|
|
128
|
+
$ sf jayree manifest git diff <commit> <commit>
|
|
129
|
+
$ sf jayree manifest git diff <commit>..<commit>
|
|
131
130
|
|
|
132
131
|
Uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both
|
|
133
132
|
<commit>.
|
|
134
133
|
|
|
135
|
-
$
|
|
134
|
+
$ sf jayree manifest git diff <commit>...<commit>
|
|
136
135
|
|
|
137
136
|
Uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1).
|
|
138
137
|
|
|
139
|
-
$
|
|
138
|
+
$ sf jayree manifest git diff branchA..branchB
|
|
140
139
|
|
|
141
140
|
Uses the diff of what is unique in branchB (REF2).
|
|
142
141
|
|
|
143
|
-
$
|
|
142
|
+
$ sf jayree manifest git diff branchA...branchB
|
|
144
143
|
|
|
145
144
|
Specify the flags before or after the REF args
|
|
146
145
|
|
|
147
|
-
$
|
|
148
|
-
$
|
|
146
|
+
$ sf jayree manifest git diff --output-dir package <commit> <commit>
|
|
147
|
+
$ sf jayree manifest git diff <commit> <commit> --output-dir package
|
|
149
148
|
|
|
150
149
|
If you specify the 'source-dir' flag before the REF args, use '--' to separate the args from the 'source-dir'
|
|
151
150
|
values.
|
|
152
151
|
|
|
153
|
-
$
|
|
152
|
+
$ sf jayree manifest git diff --source-dir force-app -- <commit> <commit>
|
|
154
153
|
|
|
155
154
|
FLAG DESCRIPTIONS
|
|
156
155
|
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
@@ -169,5 +168,5 @@ FLAG DESCRIPTIONS
|
|
|
169
168
|
The location can be an absolute path or relative to the current working directory.
|
|
170
169
|
```
|
|
171
170
|
|
|
172
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.
|
|
171
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.8/src/commands/jayree/manifest/git/diff.ts)_
|
|
173
172
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.8",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@jayree/changelog": "^1.1.11",
|
|
13
13
|
"@oclif/core": "^3.26.6",
|
|
14
|
-
"@salesforce/core": "^7.3.
|
|
14
|
+
"@salesforce/core": "^7.3.6",
|
|
15
15
|
"@salesforce/kit": "^3.1.1",
|
|
16
16
|
"@salesforce/sf-plugins-core": "^9.0.7",
|
|
17
17
|
"@salesforce/source-deploy-retrieve": "^11.4.3",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"tslib": "^2.6.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
29
|
+
"@oclif/plugin-command-snapshot": "^5.1.9",
|
|
30
30
|
"@oclif/plugin-help": "^6.0.21",
|
|
31
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
31
|
+
"@salesforce/cli-plugins-testkit": "^5.3.4",
|
|
32
32
|
"@salesforce/dev-scripts": "^9.0.0",
|
|
33
33
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
34
34
|
"@types/debug": "^4.1.12",
|
|
@@ -3336,13 +3336,13 @@
|
|
|
3336
3336
|
}
|
|
3337
3337
|
},
|
|
3338
3338
|
"node_modules/@oclif/plugin-command-snapshot": {
|
|
3339
|
-
"version": "5.1.
|
|
3340
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.
|
|
3341
|
-
"integrity": "sha512-
|
|
3339
|
+
"version": "5.1.9",
|
|
3340
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.9.tgz",
|
|
3341
|
+
"integrity": "sha512-PeSQP2IxzL34e3DYoEdAw8UCcsuawcJqnQe97HNUSBpBSC2PY/7uL887TfmMIo/rhzM7PtSUNxfNwOiKw5cNUw==",
|
|
3342
3342
|
"dev": true,
|
|
3343
3343
|
"license": "MIT",
|
|
3344
3344
|
"dependencies": {
|
|
3345
|
-
"@oclif/core": "3.26.
|
|
3345
|
+
"@oclif/core": "3.26.6",
|
|
3346
3346
|
"@types/lodash.difference": "^4.5.9",
|
|
3347
3347
|
"chalk": "^5.3.0",
|
|
3348
3348
|
"globby": "^14.0.1",
|
|
@@ -3357,117 +3357,6 @@
|
|
|
3357
3357
|
"node": ">=18.0.0"
|
|
3358
3358
|
}
|
|
3359
3359
|
},
|
|
3360
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core": {
|
|
3361
|
-
"version": "3.26.5",
|
|
3362
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
|
|
3363
|
-
"integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
|
|
3364
|
-
"dev": true,
|
|
3365
|
-
"license": "MIT",
|
|
3366
|
-
"dependencies": {
|
|
3367
|
-
"@types/cli-progress": "^3.11.5",
|
|
3368
|
-
"ansi-escapes": "^4.3.2",
|
|
3369
|
-
"ansi-styles": "^4.3.0",
|
|
3370
|
-
"cardinal": "^2.1.1",
|
|
3371
|
-
"chalk": "^4.1.2",
|
|
3372
|
-
"clean-stack": "^3.0.1",
|
|
3373
|
-
"cli-progress": "^3.12.0",
|
|
3374
|
-
"color": "^4.2.3",
|
|
3375
|
-
"debug": "^4.3.4",
|
|
3376
|
-
"ejs": "^3.1.10",
|
|
3377
|
-
"get-package-type": "^0.1.0",
|
|
3378
|
-
"globby": "^11.1.0",
|
|
3379
|
-
"hyperlinker": "^1.0.0",
|
|
3380
|
-
"indent-string": "^4.0.0",
|
|
3381
|
-
"is-wsl": "^2.2.0",
|
|
3382
|
-
"js-yaml": "^3.14.1",
|
|
3383
|
-
"minimatch": "^9.0.4",
|
|
3384
|
-
"natural-orderby": "^2.0.3",
|
|
3385
|
-
"object-treeify": "^1.1.33",
|
|
3386
|
-
"password-prompt": "^1.1.3",
|
|
3387
|
-
"slice-ansi": "^4.0.0",
|
|
3388
|
-
"string-width": "^4.2.3",
|
|
3389
|
-
"strip-ansi": "^6.0.1",
|
|
3390
|
-
"supports-color": "^8.1.1",
|
|
3391
|
-
"supports-hyperlinks": "^2.2.0",
|
|
3392
|
-
"widest-line": "^3.1.0",
|
|
3393
|
-
"wordwrap": "^1.0.0",
|
|
3394
|
-
"wrap-ansi": "^7.0.0"
|
|
3395
|
-
},
|
|
3396
|
-
"engines": {
|
|
3397
|
-
"node": ">=18.0.0"
|
|
3398
|
-
}
|
|
3399
|
-
},
|
|
3400
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk": {
|
|
3401
|
-
"version": "4.1.2",
|
|
3402
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3403
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3404
|
-
"dev": true,
|
|
3405
|
-
"license": "MIT",
|
|
3406
|
-
"dependencies": {
|
|
3407
|
-
"ansi-styles": "^4.1.0",
|
|
3408
|
-
"supports-color": "^7.1.0"
|
|
3409
|
-
},
|
|
3410
|
-
"engines": {
|
|
3411
|
-
"node": ">=10"
|
|
3412
|
-
},
|
|
3413
|
-
"funding": {
|
|
3414
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3415
|
-
}
|
|
3416
|
-
},
|
|
3417
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
|
|
3418
|
-
"version": "7.2.0",
|
|
3419
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
3420
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
3421
|
-
"dev": true,
|
|
3422
|
-
"license": "MIT",
|
|
3423
|
-
"dependencies": {
|
|
3424
|
-
"has-flag": "^4.0.0"
|
|
3425
|
-
},
|
|
3426
|
-
"engines": {
|
|
3427
|
-
"node": ">=8"
|
|
3428
|
-
}
|
|
3429
|
-
},
|
|
3430
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/globby": {
|
|
3431
|
-
"version": "11.1.0",
|
|
3432
|
-
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
|
|
3433
|
-
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
|
|
3434
|
-
"dev": true,
|
|
3435
|
-
"license": "MIT",
|
|
3436
|
-
"dependencies": {
|
|
3437
|
-
"array-union": "^2.1.0",
|
|
3438
|
-
"dir-glob": "^3.0.1",
|
|
3439
|
-
"fast-glob": "^3.2.9",
|
|
3440
|
-
"ignore": "^5.2.0",
|
|
3441
|
-
"merge2": "^1.4.1",
|
|
3442
|
-
"slash": "^3.0.0"
|
|
3443
|
-
},
|
|
3444
|
-
"engines": {
|
|
3445
|
-
"node": ">=10"
|
|
3446
|
-
},
|
|
3447
|
-
"funding": {
|
|
3448
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3449
|
-
}
|
|
3450
|
-
},
|
|
3451
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/slash": {
|
|
3452
|
-
"version": "3.0.0",
|
|
3453
|
-
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
3454
|
-
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
3455
|
-
"dev": true,
|
|
3456
|
-
"license": "MIT",
|
|
3457
|
-
"engines": {
|
|
3458
|
-
"node": ">=8"
|
|
3459
|
-
}
|
|
3460
|
-
},
|
|
3461
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/argparse": {
|
|
3462
|
-
"version": "1.0.10",
|
|
3463
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3464
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3465
|
-
"dev": true,
|
|
3466
|
-
"license": "MIT",
|
|
3467
|
-
"dependencies": {
|
|
3468
|
-
"sprintf-js": "~1.0.2"
|
|
3469
|
-
}
|
|
3470
|
-
},
|
|
3471
3360
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/globby": {
|
|
3472
3361
|
"version": "14.0.1",
|
|
3473
3362
|
"resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz",
|
|
@@ -3489,36 +3378,6 @@
|
|
|
3489
3378
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
3490
3379
|
}
|
|
3491
3380
|
},
|
|
3492
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/js-yaml": {
|
|
3493
|
-
"version": "3.14.1",
|
|
3494
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3495
|
-
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3496
|
-
"dev": true,
|
|
3497
|
-
"license": "MIT",
|
|
3498
|
-
"dependencies": {
|
|
3499
|
-
"argparse": "^1.0.7",
|
|
3500
|
-
"esprima": "^4.0.0"
|
|
3501
|
-
},
|
|
3502
|
-
"bin": {
|
|
3503
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3504
|
-
}
|
|
3505
|
-
},
|
|
3506
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/minimatch": {
|
|
3507
|
-
"version": "9.0.4",
|
|
3508
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
|
|
3509
|
-
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
|
|
3510
|
-
"dev": true,
|
|
3511
|
-
"license": "ISC",
|
|
3512
|
-
"dependencies": {
|
|
3513
|
-
"brace-expansion": "^2.0.1"
|
|
3514
|
-
},
|
|
3515
|
-
"engines": {
|
|
3516
|
-
"node": ">=16 || 14 >=14.17"
|
|
3517
|
-
},
|
|
3518
|
-
"funding": {
|
|
3519
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
3520
|
-
}
|
|
3521
|
-
},
|
|
3522
3381
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/path-type": {
|
|
3523
3382
|
"version": "5.0.0",
|
|
3524
3383
|
"resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
|
|
@@ -3545,40 +3404,6 @@
|
|
|
3545
3404
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
3546
3405
|
}
|
|
3547
3406
|
},
|
|
3548
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/supports-color": {
|
|
3549
|
-
"version": "8.1.1",
|
|
3550
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
3551
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
3552
|
-
"dev": true,
|
|
3553
|
-
"license": "MIT",
|
|
3554
|
-
"dependencies": {
|
|
3555
|
-
"has-flag": "^4.0.0"
|
|
3556
|
-
},
|
|
3557
|
-
"engines": {
|
|
3558
|
-
"node": ">=10"
|
|
3559
|
-
},
|
|
3560
|
-
"funding": {
|
|
3561
|
-
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
3562
|
-
}
|
|
3563
|
-
},
|
|
3564
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/wrap-ansi": {
|
|
3565
|
-
"version": "7.0.0",
|
|
3566
|
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
3567
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
3568
|
-
"dev": true,
|
|
3569
|
-
"license": "MIT",
|
|
3570
|
-
"dependencies": {
|
|
3571
|
-
"ansi-styles": "^4.0.0",
|
|
3572
|
-
"string-width": "^4.1.0",
|
|
3573
|
-
"strip-ansi": "^6.0.0"
|
|
3574
|
-
},
|
|
3575
|
-
"engines": {
|
|
3576
|
-
"node": ">=10"
|
|
3577
|
-
},
|
|
3578
|
-
"funding": {
|
|
3579
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
3580
|
-
}
|
|
3581
|
-
},
|
|
3582
3407
|
"node_modules/@oclif/plugin-help": {
|
|
3583
3408
|
"version": "6.0.21",
|
|
3584
3409
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.21.tgz",
|
|
@@ -3650,20 +3475,20 @@
|
|
|
3650
3475
|
}
|
|
3651
3476
|
},
|
|
3652
3477
|
"node_modules/@salesforce/cli-plugins-testkit": {
|
|
3653
|
-
"version": "5.3.
|
|
3654
|
-
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.
|
|
3655
|
-
"integrity": "sha512
|
|
3478
|
+
"version": "5.3.4",
|
|
3479
|
+
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.4.tgz",
|
|
3480
|
+
"integrity": "sha512-VgEIKuf3nr1HKwQ3t+cIoLqe7Xo4TGfzDoqXNdwPyMLneCrrktYZFnZs6sAi4gTQYuXIE4X23tzaEfjqRgwpvA==",
|
|
3656
3481
|
"dev": true,
|
|
3657
3482
|
"license": "BSD-3-Clause",
|
|
3658
3483
|
"dependencies": {
|
|
3659
|
-
"@salesforce/core": "^7.3.
|
|
3484
|
+
"@salesforce/core": "^7.3.5",
|
|
3660
3485
|
"@salesforce/kit": "^3.1.1",
|
|
3661
3486
|
"@salesforce/ts-types": "^2.0.9",
|
|
3662
3487
|
"@types/shelljs": "^0.8.15",
|
|
3663
3488
|
"debug": "^4.3.1",
|
|
3664
3489
|
"jszip": "^3.10.1",
|
|
3665
3490
|
"shelljs": "^0.8.4",
|
|
3666
|
-
"sinon": "^17.0.
|
|
3491
|
+
"sinon": "^17.0.2",
|
|
3667
3492
|
"strip-ansi": "6.0.1",
|
|
3668
3493
|
"ts-retry-promise": "^0.8.0"
|
|
3669
3494
|
},
|
|
@@ -3742,18 +3567,18 @@
|
|
|
3742
3567
|
"license": "MIT"
|
|
3743
3568
|
},
|
|
3744
3569
|
"node_modules/@salesforce/cli-plugins-testkit/node_modules/sinon": {
|
|
3745
|
-
"version": "17.0.
|
|
3746
|
-
"resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.
|
|
3747
|
-
"integrity": "sha512-
|
|
3570
|
+
"version": "17.0.2",
|
|
3571
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.2.tgz",
|
|
3572
|
+
"integrity": "sha512-uihLiaB9FhzesElPDFZA7hDcNABzsVHwr3YfmM9sBllVwab3l0ltGlRV1XhpNfIacNDLGD1QRZNLs5nU5+hTuA==",
|
|
3748
3573
|
"dev": true,
|
|
3749
3574
|
"license": "BSD-3-Clause",
|
|
3750
3575
|
"dependencies": {
|
|
3751
|
-
"@sinonjs/commons": "^3.0.
|
|
3576
|
+
"@sinonjs/commons": "^3.0.1",
|
|
3752
3577
|
"@sinonjs/fake-timers": "^11.2.2",
|
|
3753
3578
|
"@sinonjs/samsam": "^8.0.0",
|
|
3754
|
-
"diff": "^5.
|
|
3755
|
-
"nise": "^5.1.
|
|
3756
|
-
"supports-color": "^7
|
|
3579
|
+
"diff": "^5.2.0",
|
|
3580
|
+
"nise": "^5.1.9",
|
|
3581
|
+
"supports-color": "^7"
|
|
3757
3582
|
},
|
|
3758
3583
|
"funding": {
|
|
3759
3584
|
"type": "opencollective",
|
|
@@ -3771,9 +3596,9 @@
|
|
|
3771
3596
|
}
|
|
3772
3597
|
},
|
|
3773
3598
|
"node_modules/@salesforce/core": {
|
|
3774
|
-
"version": "7.3.
|
|
3775
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-7.3.
|
|
3776
|
-
"integrity": "sha512-
|
|
3599
|
+
"version": "7.3.6",
|
|
3600
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-7.3.6.tgz",
|
|
3601
|
+
"integrity": "sha512-LngaY4GxixZ7X5oPGa00NdRzpqTXC8jPOQ/H+oFNiZb8nhMfYTBsQob258z33sIBf+G/5RZOJgX10Z+teJzt6A==",
|
|
3777
3602
|
"license": "BSD-3-Clause",
|
|
3778
3603
|
"dependencies": {
|
|
3779
3604
|
"@jsforce/jsforce-node": "^3.2.0",
|
|
@@ -3791,7 +3616,7 @@
|
|
|
3791
3616
|
"pino-abstract-transport": "^1.1.0",
|
|
3792
3617
|
"pino-pretty": "^10.3.1",
|
|
3793
3618
|
"proper-lockfile": "^4.1.2",
|
|
3794
|
-
"semver": "^7.6.
|
|
3619
|
+
"semver": "^7.6.2",
|
|
3795
3620
|
"ts-retry-promise": "^0.7.1"
|
|
3796
3621
|
},
|
|
3797
3622
|
"engines": {
|
package/oclif.lock
CHANGED
|
@@ -1343,41 +1343,7 @@
|
|
|
1343
1343
|
"@nodelib/fs.scandir" "2.1.5"
|
|
1344
1344
|
fastq "^1.6.0"
|
|
1345
1345
|
|
|
1346
|
-
"@oclif/core@3.26.5":
|
|
1347
|
-
version "3.26.5"
|
|
1348
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.5.tgz#6a1962971fcaa4e235c0d6a83d50681ccb2bd0e4"
|
|
1349
|
-
integrity sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==
|
|
1350
|
-
dependencies:
|
|
1351
|
-
"@types/cli-progress" "^3.11.5"
|
|
1352
|
-
ansi-escapes "^4.3.2"
|
|
1353
|
-
ansi-styles "^4.3.0"
|
|
1354
|
-
cardinal "^2.1.1"
|
|
1355
|
-
chalk "^4.1.2"
|
|
1356
|
-
clean-stack "^3.0.1"
|
|
1357
|
-
cli-progress "^3.12.0"
|
|
1358
|
-
color "^4.2.3"
|
|
1359
|
-
debug "^4.3.4"
|
|
1360
|
-
ejs "^3.1.10"
|
|
1361
|
-
get-package-type "^0.1.0"
|
|
1362
|
-
globby "^11.1.0"
|
|
1363
|
-
hyperlinker "^1.0.0"
|
|
1364
|
-
indent-string "^4.0.0"
|
|
1365
|
-
is-wsl "^2.2.0"
|
|
1366
|
-
js-yaml "^3.14.1"
|
|
1367
|
-
minimatch "^9.0.4"
|
|
1368
|
-
natural-orderby "^2.0.3"
|
|
1369
|
-
object-treeify "^1.1.33"
|
|
1370
|
-
password-prompt "^1.1.3"
|
|
1371
|
-
slice-ansi "^4.0.0"
|
|
1372
|
-
string-width "^4.2.3"
|
|
1373
|
-
strip-ansi "^6.0.1"
|
|
1374
|
-
supports-color "^8.1.1"
|
|
1375
|
-
supports-hyperlinks "^2.2.0"
|
|
1376
|
-
widest-line "^3.1.0"
|
|
1377
|
-
wordwrap "^1.0.0"
|
|
1378
|
-
wrap-ansi "^7.0.0"
|
|
1379
|
-
|
|
1380
|
-
"@oclif/core@^3.26.0", "@oclif/core@^3.26.2", "@oclif/core@^3.26.5", "@oclif/core@^3.26.6":
|
|
1346
|
+
"@oclif/core@3.26.6", "@oclif/core@^3.26.0", "@oclif/core@^3.26.2", "@oclif/core@^3.26.5", "@oclif/core@^3.26.6":
|
|
1381
1347
|
version "3.26.6"
|
|
1382
1348
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.6.tgz#f371868cfa0fe150a6547e6af98b359065d2f971"
|
|
1383
1349
|
integrity sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==
|
|
@@ -1411,12 +1377,12 @@
|
|
|
1411
1377
|
wordwrap "^1.0.0"
|
|
1412
1378
|
wrap-ansi "^7.0.0"
|
|
1413
1379
|
|
|
1414
|
-
"@oclif/plugin-command-snapshot@^5.1.
|
|
1415
|
-
version "5.1.
|
|
1416
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.
|
|
1417
|
-
integrity sha512-
|
|
1380
|
+
"@oclif/plugin-command-snapshot@^5.1.9":
|
|
1381
|
+
version "5.1.9"
|
|
1382
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.9.tgz#f530b72cd13a3344961569d5084298f07acdb2be"
|
|
1383
|
+
integrity sha512-PeSQP2IxzL34e3DYoEdAw8UCcsuawcJqnQe97HNUSBpBSC2PY/7uL887TfmMIo/rhzM7PtSUNxfNwOiKw5cNUw==
|
|
1418
1384
|
dependencies:
|
|
1419
|
-
"@oclif/core" "3.26.
|
|
1385
|
+
"@oclif/core" "3.26.6"
|
|
1420
1386
|
"@types/lodash.difference" "^4.5.9"
|
|
1421
1387
|
chalk "^5.3.0"
|
|
1422
1388
|
globby "^14.0.1"
|
|
@@ -1465,26 +1431,26 @@
|
|
|
1465
1431
|
resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31"
|
|
1466
1432
|
integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==
|
|
1467
1433
|
|
|
1468
|
-
"@salesforce/cli-plugins-testkit@^5.3.
|
|
1469
|
-
version "5.3.
|
|
1470
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.
|
|
1471
|
-
integrity sha512
|
|
1434
|
+
"@salesforce/cli-plugins-testkit@^5.3.4":
|
|
1435
|
+
version "5.3.4"
|
|
1436
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.4.tgz#7ada47df669a8f643638e25059af9e34ffc4119a"
|
|
1437
|
+
integrity sha512-VgEIKuf3nr1HKwQ3t+cIoLqe7Xo4TGfzDoqXNdwPyMLneCrrktYZFnZs6sAi4gTQYuXIE4X23tzaEfjqRgwpvA==
|
|
1472
1438
|
dependencies:
|
|
1473
|
-
"@salesforce/core" "^7.3.
|
|
1439
|
+
"@salesforce/core" "^7.3.5"
|
|
1474
1440
|
"@salesforce/kit" "^3.1.1"
|
|
1475
1441
|
"@salesforce/ts-types" "^2.0.9"
|
|
1476
1442
|
"@types/shelljs" "^0.8.15"
|
|
1477
1443
|
debug "^4.3.1"
|
|
1478
1444
|
jszip "^3.10.1"
|
|
1479
1445
|
shelljs "^0.8.4"
|
|
1480
|
-
sinon "^17.0.
|
|
1446
|
+
sinon "^17.0.2"
|
|
1481
1447
|
strip-ansi "6.0.1"
|
|
1482
1448
|
ts-retry-promise "^0.8.0"
|
|
1483
1449
|
|
|
1484
|
-
"@salesforce/core@^7.3.1", "@salesforce/core@^7.3.3", "@salesforce/core@^7.3.5":
|
|
1485
|
-
version "7.3.
|
|
1486
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-7.3.
|
|
1487
|
-
integrity sha512-
|
|
1450
|
+
"@salesforce/core@^7.3.1", "@salesforce/core@^7.3.3", "@salesforce/core@^7.3.5", "@salesforce/core@^7.3.6":
|
|
1451
|
+
version "7.3.6"
|
|
1452
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-7.3.6.tgz#b2769abf3d8cee6fef26741dd9bdbe977a497023"
|
|
1453
|
+
integrity sha512-LngaY4GxixZ7X5oPGa00NdRzpqTXC8jPOQ/H+oFNiZb8nhMfYTBsQob258z33sIBf+G/5RZOJgX10Z+teJzt6A==
|
|
1488
1454
|
dependencies:
|
|
1489
1455
|
"@jsforce/jsforce-node" "^3.2.0"
|
|
1490
1456
|
"@salesforce/kit" "^3.1.1"
|
|
@@ -1501,7 +1467,7 @@
|
|
|
1501
1467
|
pino-abstract-transport "^1.1.0"
|
|
1502
1468
|
pino-pretty "^10.3.1"
|
|
1503
1469
|
proper-lockfile "^4.1.2"
|
|
1504
|
-
semver "^7.6.
|
|
1470
|
+
semver "^7.6.2"
|
|
1505
1471
|
ts-retry-promise "^0.7.1"
|
|
1506
1472
|
|
|
1507
1473
|
"@salesforce/dev-config@^4.1.0":
|
|
@@ -1635,7 +1601,7 @@
|
|
|
1635
1601
|
dependencies:
|
|
1636
1602
|
type-detect "4.0.8"
|
|
1637
1603
|
|
|
1638
|
-
"@sinonjs/commons@^3.0.0":
|
|
1604
|
+
"@sinonjs/commons@^3.0.0", "@sinonjs/commons@^3.0.1":
|
|
1639
1605
|
version "3.0.1"
|
|
1640
1606
|
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd"
|
|
1641
1607
|
integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==
|
|
@@ -3612,7 +3578,7 @@ diff@^4.0.1, diff@^4.0.2:
|
|
|
3612
3578
|
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
|
|
3613
3579
|
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
|
3614
3580
|
|
|
3615
|
-
diff@^5.
|
|
3581
|
+
diff@^5.2.0:
|
|
3616
3582
|
version "5.2.0"
|
|
3617
3583
|
resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
|
|
3618
3584
|
integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
|
|
@@ -6129,7 +6095,7 @@ nise@^4.1.0:
|
|
|
6129
6095
|
just-extend "^4.0.2"
|
|
6130
6096
|
path-to-regexp "^1.7.0"
|
|
6131
6097
|
|
|
6132
|
-
nise@^5.1.
|
|
6098
|
+
nise@^5.1.9:
|
|
6133
6099
|
version "5.1.9"
|
|
6134
6100
|
resolved "https://registry.yarnpkg.com/nise/-/nise-5.1.9.tgz#0cb73b5e4499d738231a473cd89bd8afbb618139"
|
|
6135
6101
|
integrity sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==
|
|
@@ -7176,7 +7142,7 @@ semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
|
|
|
7176
7142
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
|
|
7177
7143
|
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
|
7178
7144
|
|
|
7179
|
-
semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0:
|
|
7145
|
+
semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.2:
|
|
7180
7146
|
version "7.6.2"
|
|
7181
7147
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13"
|
|
7182
7148
|
integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
|
|
@@ -7331,17 +7297,17 @@ sinon@10.0.0:
|
|
|
7331
7297
|
nise "^4.1.0"
|
|
7332
7298
|
supports-color "^7.1.0"
|
|
7333
7299
|
|
|
7334
|
-
sinon@^17.0.
|
|
7335
|
-
version "17.0.
|
|
7336
|
-
resolved "https://registry.yarnpkg.com/sinon/-/sinon-17.0.
|
|
7337
|
-
integrity sha512-
|
|
7300
|
+
sinon@^17.0.2:
|
|
7301
|
+
version "17.0.2"
|
|
7302
|
+
resolved "https://registry.yarnpkg.com/sinon/-/sinon-17.0.2.tgz#470894bcc2d24b01bad539722ea46da949892405"
|
|
7303
|
+
integrity sha512-uihLiaB9FhzesElPDFZA7hDcNABzsVHwr3YfmM9sBllVwab3l0ltGlRV1XhpNfIacNDLGD1QRZNLs5nU5+hTuA==
|
|
7338
7304
|
dependencies:
|
|
7339
|
-
"@sinonjs/commons" "^3.0.
|
|
7305
|
+
"@sinonjs/commons" "^3.0.1"
|
|
7340
7306
|
"@sinonjs/fake-timers" "^11.2.2"
|
|
7341
7307
|
"@sinonjs/samsam" "^8.0.0"
|
|
7342
|
-
diff "^5.
|
|
7343
|
-
nise "^5.1.
|
|
7344
|
-
supports-color "^7
|
|
7308
|
+
diff "^5.2.0"
|
|
7309
|
+
nise "^5.1.9"
|
|
7310
|
+
supports-color "^7"
|
|
7345
7311
|
|
|
7346
7312
|
sinon@^5.1.1:
|
|
7347
7313
|
version "5.1.1"
|
|
@@ -7669,7 +7635,7 @@ supports-color@^5.3.0, supports-color@^5.4.0:
|
|
|
7669
7635
|
dependencies:
|
|
7670
7636
|
has-flag "^3.0.0"
|
|
7671
7637
|
|
|
7672
|
-
supports-color@^7
|
|
7638
|
+
supports-color@^7, supports-color@^7.0.0, supports-color@^7.1.0:
|
|
7673
7639
|
version "7.2.0"
|
|
7674
7640
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
|
7675
7641
|
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
3
|
"description": "A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.8",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@jayree/changelog": "^1.1.11",
|
|
10
10
|
"@oclif/core": "^3.26.6",
|
|
11
|
-
"@salesforce/core": "^7.3.
|
|
11
|
+
"@salesforce/core": "^7.3.6",
|
|
12
12
|
"@salesforce/kit": "^3.1.1",
|
|
13
13
|
"@salesforce/sf-plugins-core": "^9.0.7",
|
|
14
14
|
"@salesforce/source-deploy-retrieve": "^11.4.3",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"tslib": "^2.6.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
26
|
+
"@oclif/plugin-command-snapshot": "^5.1.9",
|
|
27
27
|
"@oclif/plugin-help": "^6.0.21",
|
|
28
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
28
|
+
"@salesforce/cli-plugins-testkit": "^5.3.4",
|
|
29
29
|
"@salesforce/dev-scripts": "^9.0.0",
|
|
30
30
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
31
31
|
"@types/debug": "^4.1.12",
|
|
@@ -64,17 +64,21 @@
|
|
|
64
64
|
"diff",
|
|
65
65
|
"delta",
|
|
66
66
|
"manifest",
|
|
67
|
-
"salesforce",
|
|
68
67
|
"package",
|
|
69
68
|
"retrieve",
|
|
70
69
|
"deploy",
|
|
70
|
+
"force",
|
|
71
|
+
"salesforce",
|
|
72
|
+
"salesforcedx",
|
|
73
|
+
"sf",
|
|
74
|
+
"sf-plugin",
|
|
71
75
|
"sfdx",
|
|
72
76
|
"sfdx-plugin"
|
|
73
77
|
],
|
|
74
78
|
"license": "BSD-3-Clause",
|
|
75
79
|
"oclif": {
|
|
76
80
|
"commands": "./lib/commands",
|
|
77
|
-
"bin": "
|
|
81
|
+
"bin": "sf",
|
|
78
82
|
"hooks": {
|
|
79
83
|
"update": "./lib/hooks/changelog"
|
|
80
84
|
},
|