@jayree/sfdx-plugin-manifest 3.2.5 → 3.2.6
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 +384 -29
- package/README.md +5 -5
- package/npm-shrinkwrap.json +177 -142
- package/oclif.lock +1352 -1495
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ sfdx plugins:install @jayree/sfdx-plugin-manifest
|
|
|
19
19
|
<!-- commands -->
|
|
20
20
|
* [`sfdx jayree manifest cleanup`](#sfdx-jayree-manifest-cleanup)
|
|
21
21
|
* [`sfdx jayree manifest generate`](#sfdx-jayree-manifest-generate)
|
|
22
|
-
* [`sfdx jayree manifest git diff`](#sfdx-jayree-manifest-git-diff)
|
|
22
|
+
* [`sfdx jayree manifest git diff REF1 [REF2]`](#sfdx-jayree-manifest-git-diff-ref1-ref2)
|
|
23
23
|
|
|
24
24
|
### `sfdx jayree manifest cleanup`
|
|
25
25
|
|
|
@@ -48,7 +48,7 @@ EXAMPLES
|
|
|
48
48
|
$ sfdx jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
|
51
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/cleanup.ts)_
|
|
52
52
|
|
|
53
53
|
### `sfdx jayree manifest generate`
|
|
54
54
|
|
|
@@ -86,9 +86,9 @@ EXAMPLES
|
|
|
86
86
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
|
89
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/generate.ts)_
|
|
90
90
|
|
|
91
|
-
### `sfdx jayree manifest git diff`
|
|
91
|
+
### `sfdx jayree manifest git diff REF1 [REF2]`
|
|
92
92
|
|
|
93
93
|
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
94
|
|
|
@@ -169,5 +169,5 @@ FLAG DESCRIPTIONS
|
|
|
169
169
|
The location can be an absolute path or relative to the current working directory.
|
|
170
170
|
```
|
|
171
171
|
|
|
172
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
|
172
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.2.6/src/commands/jayree/manifest/git/diff.ts)_
|
|
173
173
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
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.6",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@jayree/changelog": "^1.1.11",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"fast-xml-parser": "^4.3.6",
|
|
23
23
|
"fs-extra": "^11.2.0",
|
|
24
24
|
"graceful-fs": "^4.2.11",
|
|
25
|
-
"isomorphic-git": "1.25.
|
|
25
|
+
"isomorphic-git": "1.25.10",
|
|
26
26
|
"tslib": "^2.6.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@oclif/plugin-command-snapshot": "^5.1.8",
|
|
30
|
-
"@oclif/plugin-help": "^6.0.
|
|
30
|
+
"@oclif/plugin-help": "^6.0.21",
|
|
31
31
|
"@salesforce/cli-plugins-testkit": "^5.3.2",
|
|
32
32
|
"@salesforce/dev-scripts": "^9.0.0",
|
|
33
33
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"eslint-plugin-prettier": "^5.1.3",
|
|
41
41
|
"eslint-plugin-sf-plugin": "^1.18.3",
|
|
42
42
|
"is-ci": "^3.0.1",
|
|
43
|
-
"oclif": "^4.10.
|
|
43
|
+
"oclif": "^4.10.7",
|
|
44
44
|
"patch-package": "^8.0.0",
|
|
45
45
|
"prettier": "^3.2.5",
|
|
46
46
|
"pretty-quick": "^4.0.0",
|
|
@@ -2487,23 +2487,69 @@
|
|
|
2487
2487
|
"license": "BSD-3-Clause"
|
|
2488
2488
|
},
|
|
2489
2489
|
"node_modules/@inquirer/confirm": {
|
|
2490
|
-
"version": "
|
|
2491
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-
|
|
2492
|
-
"integrity": "sha512-
|
|
2490
|
+
"version": "3.1.6",
|
|
2491
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.6.tgz",
|
|
2492
|
+
"integrity": "sha512-Mj4TU29g6Uy+37UtpA8UpEOI2icBfpCwSW1QDtfx60wRhUy90s/kHPif2OXSSvuwDQT1lhAYRWUfkNf9Tecxvg==",
|
|
2493
|
+
"dev": true,
|
|
2493
2494
|
"license": "MIT",
|
|
2494
2495
|
"dependencies": {
|
|
2495
|
-
"@inquirer/core": "^
|
|
2496
|
-
"@inquirer/type": "^1.1
|
|
2497
|
-
"chalk": "^4.1.2"
|
|
2496
|
+
"@inquirer/core": "^8.1.0",
|
|
2497
|
+
"@inquirer/type": "^1.3.1"
|
|
2498
2498
|
},
|
|
2499
2499
|
"engines": {
|
|
2500
|
-
"node": ">=
|
|
2500
|
+
"node": ">=18"
|
|
2501
|
+
}
|
|
2502
|
+
},
|
|
2503
|
+
"node_modules/@inquirer/confirm/node_modules/@inquirer/core": {
|
|
2504
|
+
"version": "8.1.0",
|
|
2505
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-8.1.0.tgz",
|
|
2506
|
+
"integrity": "sha512-kfx0SU9nWgGe1f03ao/uXc85SFH1v2w3vQVH7QDGjKxdtJz+7vPitFtG++BTyJMYyYgH8MpXigutcXJeiQwVRw==",
|
|
2507
|
+
"dev": true,
|
|
2508
|
+
"license": "MIT",
|
|
2509
|
+
"dependencies": {
|
|
2510
|
+
"@inquirer/figures": "^1.0.1",
|
|
2511
|
+
"@inquirer/type": "^1.3.1",
|
|
2512
|
+
"@types/mute-stream": "^0.0.4",
|
|
2513
|
+
"@types/node": "^20.12.7",
|
|
2514
|
+
"@types/wrap-ansi": "^3.0.0",
|
|
2515
|
+
"ansi-escapes": "^4.3.2",
|
|
2516
|
+
"chalk": "^4.1.2",
|
|
2517
|
+
"cli-spinners": "^2.9.2",
|
|
2518
|
+
"cli-width": "^4.1.0",
|
|
2519
|
+
"mute-stream": "^1.0.0",
|
|
2520
|
+
"signal-exit": "^4.1.0",
|
|
2521
|
+
"strip-ansi": "^6.0.1",
|
|
2522
|
+
"wrap-ansi": "^6.2.0"
|
|
2523
|
+
},
|
|
2524
|
+
"engines": {
|
|
2525
|
+
"node": ">=18"
|
|
2526
|
+
}
|
|
2527
|
+
},
|
|
2528
|
+
"node_modules/@inquirer/confirm/node_modules/@inquirer/type": {
|
|
2529
|
+
"version": "1.3.1",
|
|
2530
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.3.1.tgz",
|
|
2531
|
+
"integrity": "sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==",
|
|
2532
|
+
"dev": true,
|
|
2533
|
+
"license": "MIT",
|
|
2534
|
+
"engines": {
|
|
2535
|
+
"node": ">=18"
|
|
2536
|
+
}
|
|
2537
|
+
},
|
|
2538
|
+
"node_modules/@inquirer/confirm/node_modules/@types/node": {
|
|
2539
|
+
"version": "20.12.7",
|
|
2540
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz",
|
|
2541
|
+
"integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==",
|
|
2542
|
+
"dev": true,
|
|
2543
|
+
"license": "MIT",
|
|
2544
|
+
"dependencies": {
|
|
2545
|
+
"undici-types": "~5.26.4"
|
|
2501
2546
|
}
|
|
2502
2547
|
},
|
|
2503
2548
|
"node_modules/@inquirer/confirm/node_modules/chalk": {
|
|
2504
2549
|
"version": "4.1.2",
|
|
2505
2550
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2506
2551
|
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
2552
|
+
"dev": true,
|
|
2507
2553
|
"license": "MIT",
|
|
2508
2554
|
"dependencies": {
|
|
2509
2555
|
"ansi-styles": "^4.1.0",
|
|
@@ -2516,6 +2562,19 @@
|
|
|
2516
2562
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
2517
2563
|
}
|
|
2518
2564
|
},
|
|
2565
|
+
"node_modules/@inquirer/confirm/node_modules/signal-exit": {
|
|
2566
|
+
"version": "4.1.0",
|
|
2567
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2568
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2569
|
+
"dev": true,
|
|
2570
|
+
"license": "ISC",
|
|
2571
|
+
"engines": {
|
|
2572
|
+
"node": ">=14"
|
|
2573
|
+
},
|
|
2574
|
+
"funding": {
|
|
2575
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2519
2578
|
"node_modules/@inquirer/core": {
|
|
2520
2579
|
"version": "6.0.0",
|
|
2521
2580
|
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-6.0.0.tgz",
|
|
@@ -3534,13 +3593,14 @@
|
|
|
3534
3593
|
}
|
|
3535
3594
|
},
|
|
3536
3595
|
"node_modules/@oclif/plugin-not-found": {
|
|
3537
|
-
"version": "3.
|
|
3538
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.
|
|
3539
|
-
"integrity": "sha512-
|
|
3596
|
+
"version": "3.1.8",
|
|
3597
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.1.8.tgz",
|
|
3598
|
+
"integrity": "sha512-TbpMJ7PODaXuodSivqJo9cFxiVxNUmkCCl1BTdMpLuy82nxMv6aON0W1DVJryJ/OQjM4RKXvH3x3qCB7Xn0U8g==",
|
|
3540
3599
|
"dev": true,
|
|
3541
3600
|
"license": "MIT",
|
|
3542
3601
|
"dependencies": {
|
|
3543
|
-
"@
|
|
3602
|
+
"@inquirer/confirm": "^3.1.6",
|
|
3603
|
+
"@oclif/core": "^3.26.5",
|
|
3544
3604
|
"chalk": "^5.3.0",
|
|
3545
3605
|
"fast-levenshtein": "^3.0.0"
|
|
3546
3606
|
},
|
|
@@ -3549,9 +3609,9 @@
|
|
|
3549
3609
|
}
|
|
3550
3610
|
},
|
|
3551
3611
|
"node_modules/@oclif/plugin-warn-if-update-available": {
|
|
3552
|
-
"version": "3.0.
|
|
3553
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
3554
|
-
"integrity": "sha512
|
|
3612
|
+
"version": "3.0.18",
|
|
3613
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.18.tgz",
|
|
3614
|
+
"integrity": "sha512-/orir9yIW8hZYx9kI8vpwxjuMPfJBZ5ZcY2OnKFP7OrI0yA0n+slYsFOKrsWOOEXMmKLFJmH4fRw8/xKCWSX8g==",
|
|
3555
3615
|
"dev": true,
|
|
3556
3616
|
"license": "MIT",
|
|
3557
3617
|
"dependencies": {
|
|
@@ -3559,7 +3619,7 @@
|
|
|
3559
3619
|
"chalk": "^5.3.0",
|
|
3560
3620
|
"debug": "^4.1.0",
|
|
3561
3621
|
"http-call": "^5.2.2",
|
|
3562
|
-
"lodash
|
|
3622
|
+
"lodash": "^4.17.21"
|
|
3563
3623
|
},
|
|
3564
3624
|
"engines": {
|
|
3565
3625
|
"node": ">=18.0.0"
|
|
@@ -3990,6 +4050,36 @@
|
|
|
3990
4050
|
"node": ">=18.0.0"
|
|
3991
4051
|
}
|
|
3992
4052
|
},
|
|
4053
|
+
"node_modules/@salesforce/sf-plugins-core/node_modules/@inquirer/confirm": {
|
|
4054
|
+
"version": "2.0.17",
|
|
4055
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-2.0.17.tgz",
|
|
4056
|
+
"integrity": "sha512-EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA==",
|
|
4057
|
+
"license": "MIT",
|
|
4058
|
+
"dependencies": {
|
|
4059
|
+
"@inquirer/core": "^6.0.0",
|
|
4060
|
+
"@inquirer/type": "^1.1.6",
|
|
4061
|
+
"chalk": "^4.1.2"
|
|
4062
|
+
},
|
|
4063
|
+
"engines": {
|
|
4064
|
+
"node": ">=14.18.0"
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
4067
|
+
"node_modules/@salesforce/sf-plugins-core/node_modules/@inquirer/confirm/node_modules/chalk": {
|
|
4068
|
+
"version": "4.1.2",
|
|
4069
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
4070
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
4071
|
+
"license": "MIT",
|
|
4072
|
+
"dependencies": {
|
|
4073
|
+
"ansi-styles": "^4.1.0",
|
|
4074
|
+
"supports-color": "^7.1.0"
|
|
4075
|
+
},
|
|
4076
|
+
"engines": {
|
|
4077
|
+
"node": ">=10"
|
|
4078
|
+
},
|
|
4079
|
+
"funding": {
|
|
4080
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
4081
|
+
}
|
|
4082
|
+
},
|
|
3993
4083
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
3994
4084
|
"version": "11.4.0",
|
|
3995
4085
|
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-11.4.0.tgz",
|
|
@@ -9157,9 +9247,9 @@
|
|
|
9157
9247
|
}
|
|
9158
9248
|
},
|
|
9159
9249
|
"node_modules/github-slugger": {
|
|
9160
|
-
"version": "
|
|
9161
|
-
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-
|
|
9162
|
-
"integrity": "sha512-
|
|
9250
|
+
"version": "2.0.0",
|
|
9251
|
+
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
|
|
9252
|
+
"integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==",
|
|
9163
9253
|
"dev": true,
|
|
9164
9254
|
"license": "ISC"
|
|
9165
9255
|
},
|
|
@@ -10260,12 +10350,12 @@
|
|
|
10260
10350
|
"license": "ISC"
|
|
10261
10351
|
},
|
|
10262
10352
|
"node_modules/isomorphic-git": {
|
|
10263
|
-
"version": "1.25.
|
|
10264
|
-
"resolved": "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.25.
|
|
10265
|
-
"integrity": "sha512-
|
|
10353
|
+
"version": "1.25.10",
|
|
10354
|
+
"resolved": "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.25.10.tgz",
|
|
10355
|
+
"integrity": "sha512-IxGiaKBwAdcgBXwIcxJU6rHLk+NrzYaaPKXXQffcA0GW3IUrQXdUPDXDo+hkGVcYruuz/7JlGBiuaeTCgIgivQ==",
|
|
10266
10356
|
"license": "MIT",
|
|
10267
10357
|
"dependencies": {
|
|
10268
|
-
"async-lock": "^1.1
|
|
10358
|
+
"async-lock": "^1.4.1",
|
|
10269
10359
|
"clean-git-ref": "^2.0.1",
|
|
10270
10360
|
"crc-32": "^1.2.0",
|
|
10271
10361
|
"diff3": "0.0.3",
|
|
@@ -10973,13 +11063,6 @@
|
|
|
10973
11063
|
"dev": true,
|
|
10974
11064
|
"license": "MIT"
|
|
10975
11065
|
},
|
|
10976
|
-
"node_modules/lodash._reinterpolate": {
|
|
10977
|
-
"version": "3.0.0",
|
|
10978
|
-
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
|
|
10979
|
-
"integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==",
|
|
10980
|
-
"dev": true,
|
|
10981
|
-
"license": "MIT"
|
|
10982
|
-
},
|
|
10983
11066
|
"node_modules/lodash.camelcase": {
|
|
10984
11067
|
"version": "4.3.0",
|
|
10985
11068
|
"resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
|
|
@@ -11099,27 +11182,6 @@
|
|
|
11099
11182
|
"dev": true,
|
|
11100
11183
|
"license": "MIT"
|
|
11101
11184
|
},
|
|
11102
|
-
"node_modules/lodash.template": {
|
|
11103
|
-
"version": "4.5.0",
|
|
11104
|
-
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
|
|
11105
|
-
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
|
|
11106
|
-
"dev": true,
|
|
11107
|
-
"license": "MIT",
|
|
11108
|
-
"dependencies": {
|
|
11109
|
-
"lodash._reinterpolate": "^3.0.0",
|
|
11110
|
-
"lodash.templatesettings": "^4.0.0"
|
|
11111
|
-
}
|
|
11112
|
-
},
|
|
11113
|
-
"node_modules/lodash.templatesettings": {
|
|
11114
|
-
"version": "4.2.0",
|
|
11115
|
-
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
|
|
11116
|
-
"integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
|
|
11117
|
-
"dev": true,
|
|
11118
|
-
"license": "MIT",
|
|
11119
|
-
"dependencies": {
|
|
11120
|
-
"lodash._reinterpolate": "^3.0.0"
|
|
11121
|
-
}
|
|
11122
|
-
},
|
|
11123
11185
|
"node_modules/lodash.uniq": {
|
|
11124
11186
|
"version": "4.5.0",
|
|
11125
11187
|
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
|
@@ -11207,6 +11269,7 @@
|
|
|
11207
11269
|
"version": "6.0.0",
|
|
11208
11270
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
11209
11271
|
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
11272
|
+
"dev": true,
|
|
11210
11273
|
"license": "ISC",
|
|
11211
11274
|
"dependencies": {
|
|
11212
11275
|
"yallist": "^4.0.0"
|
|
@@ -12165,9 +12228,9 @@
|
|
|
12165
12228
|
}
|
|
12166
12229
|
},
|
|
12167
12230
|
"node_modules/oclif": {
|
|
12168
|
-
"version": "4.10.
|
|
12169
|
-
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.10.
|
|
12170
|
-
"integrity": "sha512-
|
|
12231
|
+
"version": "4.10.7",
|
|
12232
|
+
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.10.7.tgz",
|
|
12233
|
+
"integrity": "sha512-ZyfNT4DbtFwqq7fh0xrHrctjqxR2O4mkclvj//SiRkylAk154Nytl1D+JlMQDewqcqzKK07bHd04JUzAlOWKSA==",
|
|
12171
12234
|
"dev": true,
|
|
12172
12235
|
"license": "MIT",
|
|
12173
12236
|
"dependencies": {
|
|
@@ -12178,21 +12241,22 @@
|
|
|
12178
12241
|
"@inquirer/select": "^2.3.2",
|
|
12179
12242
|
"@oclif/core": "^3.26.5",
|
|
12180
12243
|
"@oclif/plugin-help": "^6.0.21",
|
|
12181
|
-
"@oclif/plugin-not-found": "^3.
|
|
12182
|
-
"@oclif/plugin-warn-if-update-available": "^3.0.
|
|
12244
|
+
"@oclif/plugin-not-found": "^3.1.8",
|
|
12245
|
+
"@oclif/plugin-warn-if-update-available": "^3.0.17",
|
|
12183
12246
|
"async-retry": "^1.3.3",
|
|
12184
12247
|
"chalk": "^4",
|
|
12185
12248
|
"change-case": "^4",
|
|
12186
|
-
"debug": "^4.3.
|
|
12249
|
+
"debug": "^4.3.4",
|
|
12187
12250
|
"ejs": "^3.1.10",
|
|
12188
12251
|
"find-yarn-workspace-root": "^2.0.0",
|
|
12189
12252
|
"fs-extra": "^8.1",
|
|
12190
|
-
"github-slugger": "^
|
|
12253
|
+
"github-slugger": "^2",
|
|
12191
12254
|
"got": "^13",
|
|
12192
|
-
"lodash
|
|
12193
|
-
"normalize-package-data": "^
|
|
12255
|
+
"lodash": "^4.17.21",
|
|
12256
|
+
"normalize-package-data": "^6",
|
|
12194
12257
|
"semver": "^7.6.0",
|
|
12195
12258
|
"sort-package-json": "^2.10.0",
|
|
12259
|
+
"tiny-jsonc": "^1.0.1",
|
|
12196
12260
|
"validate-npm-package-name": "^5.0.0"
|
|
12197
12261
|
},
|
|
12198
12262
|
"bin": {
|
|
@@ -12202,55 +12266,6 @@
|
|
|
12202
12266
|
"node": ">=18.0.0"
|
|
12203
12267
|
}
|
|
12204
12268
|
},
|
|
12205
|
-
"node_modules/oclif/node_modules/@inquirer/confirm": {
|
|
12206
|
-
"version": "3.1.6",
|
|
12207
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.6.tgz",
|
|
12208
|
-
"integrity": "sha512-Mj4TU29g6Uy+37UtpA8UpEOI2icBfpCwSW1QDtfx60wRhUy90s/kHPif2OXSSvuwDQT1lhAYRWUfkNf9Tecxvg==",
|
|
12209
|
-
"dev": true,
|
|
12210
|
-
"license": "MIT",
|
|
12211
|
-
"dependencies": {
|
|
12212
|
-
"@inquirer/core": "^8.1.0",
|
|
12213
|
-
"@inquirer/type": "^1.3.1"
|
|
12214
|
-
},
|
|
12215
|
-
"engines": {
|
|
12216
|
-
"node": ">=18"
|
|
12217
|
-
}
|
|
12218
|
-
},
|
|
12219
|
-
"node_modules/oclif/node_modules/@inquirer/core": {
|
|
12220
|
-
"version": "8.1.0",
|
|
12221
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-8.1.0.tgz",
|
|
12222
|
-
"integrity": "sha512-kfx0SU9nWgGe1f03ao/uXc85SFH1v2w3vQVH7QDGjKxdtJz+7vPitFtG++BTyJMYyYgH8MpXigutcXJeiQwVRw==",
|
|
12223
|
-
"dev": true,
|
|
12224
|
-
"license": "MIT",
|
|
12225
|
-
"dependencies": {
|
|
12226
|
-
"@inquirer/figures": "^1.0.1",
|
|
12227
|
-
"@inquirer/type": "^1.3.1",
|
|
12228
|
-
"@types/mute-stream": "^0.0.4",
|
|
12229
|
-
"@types/node": "^20.12.7",
|
|
12230
|
-
"@types/wrap-ansi": "^3.0.0",
|
|
12231
|
-
"ansi-escapes": "^4.3.2",
|
|
12232
|
-
"chalk": "^4.1.2",
|
|
12233
|
-
"cli-spinners": "^2.9.2",
|
|
12234
|
-
"cli-width": "^4.1.0",
|
|
12235
|
-
"mute-stream": "^1.0.0",
|
|
12236
|
-
"signal-exit": "^4.1.0",
|
|
12237
|
-
"strip-ansi": "^6.0.1",
|
|
12238
|
-
"wrap-ansi": "^6.2.0"
|
|
12239
|
-
},
|
|
12240
|
-
"engines": {
|
|
12241
|
-
"node": ">=18"
|
|
12242
|
-
}
|
|
12243
|
-
},
|
|
12244
|
-
"node_modules/oclif/node_modules/@inquirer/type": {
|
|
12245
|
-
"version": "1.3.1",
|
|
12246
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.3.1.tgz",
|
|
12247
|
-
"integrity": "sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==",
|
|
12248
|
-
"dev": true,
|
|
12249
|
-
"license": "MIT",
|
|
12250
|
-
"engines": {
|
|
12251
|
-
"node": ">=18"
|
|
12252
|
-
}
|
|
12253
|
-
},
|
|
12254
12269
|
"node_modules/oclif/node_modules/@sindresorhus/is": {
|
|
12255
12270
|
"version": "5.6.0",
|
|
12256
12271
|
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
|
|
@@ -12277,16 +12292,6 @@
|
|
|
12277
12292
|
"node": ">=14.16"
|
|
12278
12293
|
}
|
|
12279
12294
|
},
|
|
12280
|
-
"node_modules/oclif/node_modules/@types/node": {
|
|
12281
|
-
"version": "20.12.7",
|
|
12282
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz",
|
|
12283
|
-
"integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==",
|
|
12284
|
-
"dev": true,
|
|
12285
|
-
"license": "MIT",
|
|
12286
|
-
"dependencies": {
|
|
12287
|
-
"undici-types": "~5.26.4"
|
|
12288
|
-
}
|
|
12289
|
-
},
|
|
12290
12295
|
"node_modules/oclif/node_modules/cacheable-lookup": {
|
|
12291
12296
|
"version": "7.0.0",
|
|
12292
12297
|
"resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
|
|
@@ -12355,6 +12360,19 @@
|
|
|
12355
12360
|
"url": "https://github.com/sindresorhus/got?sponsor=1"
|
|
12356
12361
|
}
|
|
12357
12362
|
},
|
|
12363
|
+
"node_modules/oclif/node_modules/hosted-git-info": {
|
|
12364
|
+
"version": "7.0.2",
|
|
12365
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
|
|
12366
|
+
"integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
|
|
12367
|
+
"dev": true,
|
|
12368
|
+
"license": "ISC",
|
|
12369
|
+
"dependencies": {
|
|
12370
|
+
"lru-cache": "^10.0.1"
|
|
12371
|
+
},
|
|
12372
|
+
"engines": {
|
|
12373
|
+
"node": "^16.14.0 || >=18.0.0"
|
|
12374
|
+
}
|
|
12375
|
+
},
|
|
12358
12376
|
"node_modules/oclif/node_modules/http2-wrapper": {
|
|
12359
12377
|
"version": "2.2.1",
|
|
12360
12378
|
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
|
|
@@ -12392,6 +12410,32 @@
|
|
|
12392
12410
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
12393
12411
|
}
|
|
12394
12412
|
},
|
|
12413
|
+
"node_modules/oclif/node_modules/lru-cache": {
|
|
12414
|
+
"version": "10.2.2",
|
|
12415
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
|
|
12416
|
+
"integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
|
|
12417
|
+
"dev": true,
|
|
12418
|
+
"license": "ISC",
|
|
12419
|
+
"engines": {
|
|
12420
|
+
"node": "14 || >=16.14"
|
|
12421
|
+
}
|
|
12422
|
+
},
|
|
12423
|
+
"node_modules/oclif/node_modules/normalize-package-data": {
|
|
12424
|
+
"version": "6.0.1",
|
|
12425
|
+
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz",
|
|
12426
|
+
"integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==",
|
|
12427
|
+
"dev": true,
|
|
12428
|
+
"license": "BSD-2-Clause",
|
|
12429
|
+
"dependencies": {
|
|
12430
|
+
"hosted-git-info": "^7.0.0",
|
|
12431
|
+
"is-core-module": "^2.8.1",
|
|
12432
|
+
"semver": "^7.3.5",
|
|
12433
|
+
"validate-npm-package-license": "^3.0.4"
|
|
12434
|
+
},
|
|
12435
|
+
"engines": {
|
|
12436
|
+
"node": "^16.14.0 || >=18.0.0"
|
|
12437
|
+
}
|
|
12438
|
+
},
|
|
12395
12439
|
"node_modules/oclif/node_modules/p-cancelable": {
|
|
12396
12440
|
"version": "3.0.0",
|
|
12397
12441
|
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
|
|
@@ -12418,19 +12462,6 @@
|
|
|
12418
12462
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
12419
12463
|
}
|
|
12420
12464
|
},
|
|
12421
|
-
"node_modules/oclif/node_modules/signal-exit": {
|
|
12422
|
-
"version": "4.1.0",
|
|
12423
|
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
12424
|
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
12425
|
-
"dev": true,
|
|
12426
|
-
"license": "ISC",
|
|
12427
|
-
"engines": {
|
|
12428
|
-
"node": ">=14"
|
|
12429
|
-
},
|
|
12430
|
-
"funding": {
|
|
12431
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
12432
|
-
}
|
|
12433
|
-
},
|
|
12434
12465
|
"node_modules/oclif/node_modules/universalify": {
|
|
12435
12466
|
"version": "0.1.2",
|
|
12436
12467
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
@@ -13868,13 +13899,10 @@
|
|
|
13868
13899
|
"license": "BSD-3-Clause"
|
|
13869
13900
|
},
|
|
13870
13901
|
"node_modules/semver": {
|
|
13871
|
-
"version": "7.6.
|
|
13872
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.
|
|
13873
|
-
"integrity": "sha512-
|
|
13902
|
+
"version": "7.6.2",
|
|
13903
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
|
|
13904
|
+
"integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
|
|
13874
13905
|
"license": "ISC",
|
|
13875
|
-
"dependencies": {
|
|
13876
|
-
"lru-cache": "^6.0.0"
|
|
13877
|
-
},
|
|
13878
13906
|
"bin": {
|
|
13879
13907
|
"semver": "bin/semver.js"
|
|
13880
13908
|
},
|
|
@@ -14736,6 +14764,12 @@
|
|
|
14736
14764
|
"readable-stream": "3"
|
|
14737
14765
|
}
|
|
14738
14766
|
},
|
|
14767
|
+
"node_modules/tiny-jsonc": {
|
|
14768
|
+
"version": "1.0.1",
|
|
14769
|
+
"resolved": "https://registry.npmjs.org/tiny-jsonc/-/tiny-jsonc-1.0.1.tgz",
|
|
14770
|
+
"integrity": "sha512-ik6BCxzva9DoiEfDX/li0L2cWKPPENYvixUprFdl3YPi4bZZUhDnNI9YUkacrv+uIG90dnxR5mNqaoD6UhD6Bw==",
|
|
14771
|
+
"dev": true
|
|
14772
|
+
},
|
|
14739
14773
|
"node_modules/tmp": {
|
|
14740
14774
|
"version": "0.0.33",
|
|
14741
14775
|
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
|
|
@@ -15633,6 +15667,7 @@
|
|
|
15633
15667
|
"version": "4.0.0",
|
|
15634
15668
|
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
15635
15669
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
15670
|
+
"dev": true,
|
|
15636
15671
|
"license": "ISC"
|
|
15637
15672
|
},
|
|
15638
15673
|
"node_modules/yaml": {
|