@salesforce/plugin-signups 2.0.6 → 2.0.7

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 CHANGED
@@ -95,7 +95,8 @@ USAGE
95
95
  $ sf org create shape -o <value> [--json] [--api-version <value>]
96
96
 
97
97
  FLAGS
98
- -o, --target-org=<value> (required) Username or alias of the target org.
98
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
99
+ configuration variable is already set.
99
100
  --api-version=<value> Override the api version used for api requests made by this command
100
101
 
101
102
  GLOBAL FLAGS
@@ -121,7 +122,7 @@ EXAMPLES
121
122
  $ sf org create shape --target-org SourceOrg
122
123
  ```
123
124
 
124
- _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/create/shape.ts)_
125
+ _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/create/shape.ts)_
125
126
 
126
127
  ## `sf org create snapshot`
127
128
 
@@ -135,7 +136,8 @@ FLAGS
135
136
  -d, --description=<value> Description of snapshot.
136
137
  -n, --name=<value> (required) Unique name of snapshot.
137
138
  -o, --source-org=<value> (required) ID or locally authenticated username or alias of scratch org to snapshot.
138
- -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
139
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
140
+ configuration variable is already set.
139
141
  --api-version=<value> Override the api version used for api requests made by this command
140
142
 
141
143
  GLOBAL FLAGS
@@ -174,7 +176,7 @@ FLAG DESCRIPTIONS
174
176
  as a version control system tag or commit ID.
175
177
  ```
176
178
 
177
- _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/create/snapshot.ts)_
179
+ _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/create/snapshot.ts)_
178
180
 
179
181
  ## `sf org delete shape`
180
182
 
@@ -185,7 +187,8 @@ USAGE
185
187
  $ sf org delete shape -o <value> [--json] [--api-version <value>] [-p]
186
188
 
187
189
  FLAGS
188
- -o, --target-org=<value> (required) Username or alias of the target org.
190
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
191
+ configuration variable is already set.
189
192
  -p, --no-prompt Don't prompt for confirmation.
190
193
  --api-version=<value> Override the api version used for api requests made by this command
191
194
 
@@ -212,7 +215,7 @@ EXAMPLES
212
215
  $ sf org delete shape --target-org SourceOrg --no-prompt
213
216
  ```
214
217
 
215
- _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/delete/shape.ts)_
218
+ _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/delete/shape.ts)_
216
219
 
217
220
  ## `sf org delete snapshot`
218
221
 
@@ -224,7 +227,8 @@ USAGE
224
227
 
225
228
  FLAGS
226
229
  -s, --snapshot=<value> (required) Name or ID of snapshot to delete.
227
- -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
230
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
231
+ configuration variable is already set.
228
232
  --api-version=<value> Override the api version used for api requests made by this command
229
233
 
230
234
  GLOBAL FLAGS
@@ -254,7 +258,7 @@ FLAG DESCRIPTIONS
254
258
  The IDs of scratch org snapshots start with 0Oo.
255
259
  ```
256
260
 
257
- _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/delete/snapshot.ts)_
261
+ _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/delete/snapshot.ts)_
258
262
 
259
263
  ## `sf org get snapshot`
260
264
 
@@ -266,7 +270,8 @@ USAGE
266
270
 
267
271
  FLAGS
268
272
  -s, --snapshot=<value> (required) Name or ID of snapshot to retrieve.
269
- -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
273
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
274
+ configuration variable is already set.
270
275
  --api-version=<value> Override the api version used for api requests made by this command
271
276
 
272
277
  GLOBAL FLAGS
@@ -299,7 +304,7 @@ FLAG DESCRIPTIONS
299
304
  The IDs of scratch org snapshots start with 0Oo.
300
305
  ```
301
306
 
302
- _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/get/snapshot.ts)_
307
+ _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/get/snapshot.ts)_
303
308
 
304
309
  ## `sf org list shape`
305
310
 
@@ -331,7 +336,7 @@ EXAMPLES
331
336
  $ sf org list shape --json > tmp/MyOrgShapeList.json
332
337
  ```
333
338
 
334
- _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/list/shape.ts)_
339
+ _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/list/shape.ts)_
335
340
 
336
341
  ## `sf org list snapshot`
337
342
 
@@ -342,7 +347,8 @@ USAGE
342
347
  $ sf org list snapshot -v <value> [--json] [--api-version <value>]
343
348
 
344
349
  FLAGS
345
- -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
350
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
351
+ configuration variable is already set.
346
352
  --api-version=<value> Override the api version used for api requests made by this command
347
353
 
348
354
  GLOBAL FLAGS
@@ -371,6 +377,6 @@ EXAMPLES
371
377
  $ sf org list snapshot --target-dev-hub SnapshotDevHub
372
378
  ```
373
379
 
374
- _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.6/src/commands/org/list/snapshot.ts)_
380
+ _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.7/src/commands/org/list/snapshot.ts)_
375
381
 
376
382
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -443,6 +443,18 @@
443
443
  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
444
444
  integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
445
445
 
446
+ "@isaacs/cliui@^8.0.2":
447
+ version "8.0.2"
448
+ resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
449
+ integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
450
+ dependencies:
451
+ string-width "^5.1.2"
452
+ string-width-cjs "npm:string-width@^4.2.0"
453
+ strip-ansi "^7.0.1"
454
+ strip-ansi-cjs "npm:strip-ansi@^6.0.1"
455
+ wrap-ansi "^8.1.0"
456
+ wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
457
+
446
458
  "@isaacs/string-locale-compare@^1.1.0":
447
459
  version "1.1.0"
448
460
  resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b"
@@ -690,7 +702,7 @@
690
702
  supports-color "^8.1.1"
691
703
  tslib "^2"
692
704
 
693
- "@oclif/core@^2.15.0", "@oclif/core@^2.9.3", "@oclif/core@^2.9.4":
705
+ "@oclif/core@^2.9.3", "@oclif/core@^2.9.4":
694
706
  version "2.15.0"
695
707
  resolved "https://registry.yarnpkg.com/@oclif/core/-/core-2.15.0.tgz#f27797b30a77d13279fba88c1698fc34a0bd0d2a"
696
708
  integrity sha512-fNEMG5DzJHhYmI3MgpByTvltBOMyFcnRIUMxbiz2ai8rhaYgaTHMG3Q38HcosfIvtw9nCjxpcQtC8MN8QtVCcA==
@@ -724,10 +736,10 @@
724
736
  wordwrap "^1.0.0"
725
737
  wrap-ansi "^7.0.0"
726
738
 
727
- "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.13.1", "@oclif/core@^3.3.1":
728
- version "3.13.1"
729
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.13.1.tgz#dbd5e604ec78a716a33bfa6fec6c988a507b7f38"
730
- integrity sha512-bpnF6BL+j7D0k0T+dZ4g7LwcZzctCoKjIYm8zcSNgrItS2pgIlvsRf8SdkGNu6djzRD7vzM657ZO9fWU6goz0g==
739
+ "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.12.0", "@oclif/core@^3.13.1", "@oclif/core@^3.14.1", "@oclif/core@^3.3.1":
740
+ version "3.14.1"
741
+ resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.14.1.tgz#634fc96124068e47b720d62f3b278d818a07495e"
742
+ integrity sha512-HLFL2s45DFdqYI2CFjVS/CIQ4cQ4yZqH0XqO9nnwcRWYboz2rEW/vLmidjIYGDjh6xA/k5psiAL3O1KEjqSHuQ==
731
743
  dependencies:
732
744
  ansi-escapes "^4.3.2"
733
745
  ansi-styles "^4.3.0"
@@ -900,6 +912,11 @@
900
912
  dependencies:
901
913
  "@octokit/openapi-types" "^12.11.0"
902
914
 
915
+ "@pkgjs/parseargs@^0.11.0":
916
+ version "0.11.0"
917
+ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
918
+ integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
919
+
903
920
  "@salesforce/cli-plugins-testkit@^5.0.4":
904
921
  version "5.0.4"
905
922
  resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.0.4.tgz#523c459f43822d7b24bff5117aeda7f77ed5e26c"
@@ -915,7 +932,7 @@
915
932
  strip-ansi "6.0.1"
916
933
  ts-retry-promise "^0.7.1"
917
934
 
918
- "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.17", "@salesforce/core@^5.3.20":
935
+ "@salesforce/core@^5.3.20":
919
936
  version "5.3.20"
920
937
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.20.tgz#4e934d4551bb70423cb1c4115615bc41cffca41e"
921
938
  integrity sha512-y+O6O2c8OYFDrAy2qsG+pAcNxoyL14nmBXcBRRcYA7Huj8ikK+aLJK84PuVAYdQz+hNwImQF+69IWtDkpK4Irg==
@@ -939,7 +956,7 @@
939
956
  semver "^7.5.4"
940
957
  ts-retry-promise "^0.7.1"
941
958
 
942
- "@salesforce/core@^6.1.0", "@salesforce/core@^6.2.2":
959
+ "@salesforce/core@^6.2.2":
943
960
  version "6.2.2"
944
961
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.2.2.tgz#c390c7c407e8916ad85a3e300d9d9e4fecfba207"
945
962
  integrity sha512-R2ptk/+KSWDJOqdInxfzPTLF3V//vFtD4vQcjWIK9NaGCCq4ZwiF2gMpkBcKgDQneLUmva2NcmnzF3c51zQp5A==
@@ -968,10 +985,10 @@
968
985
  resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
969
986
  integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
970
987
 
971
- "@salesforce/dev-scripts@^8.0.0":
972
- version "8.0.0"
973
- resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.0.0.tgz#debdc8a311858259e7c972a55b82521c6eed101d"
974
- integrity sha512-8TxQD+8Acn1CBiiSwhTPnYfbdaX9fASUPB5CvTSQJMr9aitoa9PFrC/wE7QTmtf+O8UAAVz4nndhjVABqpYf1Q==
988
+ "@salesforce/dev-scripts@^8.1.0":
989
+ version "8.1.0"
990
+ resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.1.0.tgz#0310dc9fb4104637a237876161a40331dd382e9f"
991
+ integrity sha512-lA5uJMwfKKrbv+JMCxX8aOrwE1ihlmUfAy8SVCgBSaHNckRBDQP2zIM7S03zoXFSpUtebCndo1ODQxw+zVrK3g==
975
992
  dependencies:
976
993
  "@commitlint/cli" "^17.1.2"
977
994
  "@commitlint/config-conventional" "^17.1.0"
@@ -986,6 +1003,7 @@
986
1003
  cosmiconfig "^7.0.0"
987
1004
  eslint-config-salesforce-typescript "^3.0.5"
988
1005
  husky "^7.0.4"
1006
+ linkinator "^6.0.2"
989
1007
  mocha "^10.2.0"
990
1008
  nyc "^15.1.0"
991
1009
  prettier "^2.8.8"
@@ -999,7 +1017,7 @@
999
1017
  typescript "^4.9.5"
1000
1018
  wireit "^0.14.1"
1001
1019
 
1002
- "@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15":
1020
+ "@salesforce/kit@^3.0.15":
1003
1021
  version "3.0.15"
1004
1022
  resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.15.tgz#713df3f5767f874c70a2e731c7cb5ba677989559"
1005
1023
  integrity sha512-XkA8jsuLvVnyP460dAbU3pBFP2IkmmmsVxMQVifcKKbNWaIBbZBzAfj+vdaQfnvZyflLhsrFT3q2xkb0vHouPg==
@@ -1007,15 +1025,15 @@
1007
1025
  "@salesforce/ts-types" "^2.0.9"
1008
1026
  tslib "^2.6.2"
1009
1027
 
1010
- "@salesforce/plugin-command-reference@^3.0.46":
1011
- version "3.0.46"
1012
- resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.46.tgz#8ade210de4c235fa8daa9b59272481bea61bcd54"
1013
- integrity sha512-tUe8pAarH/km7wbRDpKgWc3qCzh52q5FmJpnJbs7wwWnvM5X4MzdpZ/sF/8MT3cS6FkZy//ls796QIC0vvOYsA==
1028
+ "@salesforce/plugin-command-reference@^3.0.51":
1029
+ version "3.0.51"
1030
+ resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.51.tgz#d944701bef9ae43bf2ef1f74d3a1d79dccee6399"
1031
+ integrity sha512-lKIktlP3ZwL9gM5DUl0yuclY9GaEIGaJ9E5CzGzCMN3FihMU7GJ+K80Z9XU2D4egb37U5LDfQFZepmqpi6hWUg==
1014
1032
  dependencies:
1015
- "@oclif/core" "^2.15.0"
1016
- "@salesforce/core" "^5.3.17"
1033
+ "@oclif/core" "^3.13.1"
1034
+ "@salesforce/core" "^6.2.2"
1017
1035
  "@salesforce/kit" "^3.0.15"
1018
- "@salesforce/sf-plugins-core" "^3.1.28"
1036
+ "@salesforce/sf-plugins-core" "^5.0.5"
1019
1037
  "@salesforce/ts-types" "^2.0.9"
1020
1038
  chalk "^4"
1021
1039
  handlebars "^4.7.8"
@@ -1031,32 +1049,20 @@
1031
1049
  resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.1.tgz#7d1c071e1e509ca9d2d8a6e48ac7447dd67a534d"
1032
1050
  integrity sha512-eVy947ZMxCJReKJdgfddUIsBIbPTa/i8RwQGwxq4/ss38H5sLOAeSTaun9V7HpJ1hkpDznWKfgzYvjsst9K6ig==
1033
1051
 
1034
- "@salesforce/sf-plugins-core@^3.1.28":
1035
- version "3.1.28"
1036
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.28.tgz#7714c5b1ce26052bb5cbc524c5990bc52eb601cd"
1037
- integrity sha512-Z1fVS/pqLCX/3ESrjvtzyuvDFwXu8qxjqs5Gana0J7RKkhDL0f7w+pz3DR1/YfQPeHK8rk9pFDOKB3tOnXf9Lw==
1052
+ "@salesforce/sf-plugins-core@^5.0.1", "@salesforce/sf-plugins-core@^5.0.5":
1053
+ version "5.0.6"
1054
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.6.tgz#d0e9de00a4f4acebc5293b72765612c9fea78b00"
1055
+ integrity sha512-IQFHKQDWiRAGPEhC+UGw1P6R9MzLOKTG8G6YURK5roAEVPstxcj/vbSx3jkcrqUZorxqc7StUVJiL39BNyIEug==
1038
1056
  dependencies:
1039
- "@oclif/core" "^2.15.0"
1040
- "@salesforce/core" "^5.3.1"
1041
- "@salesforce/kit" "^3.0.13"
1042
- "@salesforce/ts-types" "^2.0.7"
1043
- chalk "^4"
1044
- inquirer "^8.2.5"
1045
-
1046
- "@salesforce/sf-plugins-core@^5.0.1":
1047
- version "5.0.1"
1048
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
1049
- integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
1050
- dependencies:
1051
- "@oclif/core" "^3.11.0"
1052
- "@salesforce/core" "^6.1.0"
1057
+ "@oclif/core" "^3.12.0"
1058
+ "@salesforce/core" "^6.2.2"
1053
1059
  "@salesforce/kit" "^3.0.15"
1054
1060
  "@salesforce/ts-types" "^2.0.9"
1055
1061
  "@types/inquirer" "^8.2.3"
1056
1062
  chalk "^4"
1057
1063
  inquirer "^8.2.5"
1058
1064
 
1059
- "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7", "@salesforce/ts-types@^2.0.9":
1065
+ "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.9":
1060
1066
  version "2.0.9"
1061
1067
  resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.9.tgz#66bff7b41720065d6b01631b6f6a3ccca02857c5"
1062
1068
  integrity sha512-boUD9jw5vQpTCPCCmK/NFTWjSuuW+lsaxOynkyNXLW+zxOc4GDjhtKc4j0vWZJQvolpafbyS8ZLFHZJvs12gYA==
@@ -1498,6 +1504,13 @@ agent-base@6, agent-base@^6.0.2:
1498
1504
  dependencies:
1499
1505
  debug "4"
1500
1506
 
1507
+ agent-base@^7.0.2:
1508
+ version "7.1.0"
1509
+ resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434"
1510
+ integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==
1511
+ dependencies:
1512
+ debug "^4.3.4"
1513
+
1501
1514
  agentkeepalive@^4.1.3, agentkeepalive@^4.2.1:
1502
1515
  version "4.2.1"
1503
1516
  resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717"
@@ -1557,6 +1570,11 @@ ansi-regex@^5.0.1:
1557
1570
  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
1558
1571
  integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
1559
1572
 
1573
+ ansi-regex@^6.0.1:
1574
+ version "6.0.1"
1575
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
1576
+ integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
1577
+
1560
1578
  ansi-sequence-parser@^1.1.0:
1561
1579
  version "1.1.1"
1562
1580
  resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
@@ -1576,6 +1594,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.1, ansi-styles@^4.3.0:
1576
1594
  dependencies:
1577
1595
  color-convert "^2.0.1"
1578
1596
 
1597
+ ansi-styles@^6.1.0:
1598
+ version "6.2.1"
1599
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
1600
+ integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
1601
+
1579
1602
  ansicolors@~0.3.2:
1580
1603
  version "0.3.2"
1581
1604
  resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
@@ -2112,7 +2135,7 @@ chalk@^4, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
2112
2135
  ansi-styles "^4.1.0"
2113
2136
  supports-color "^7.1.0"
2114
2137
 
2115
- chalk@^5.3.0:
2138
+ chalk@^5.0.0, chalk@^5.3.0:
2116
2139
  version "5.3.0"
2117
2140
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385"
2118
2141
  integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==
@@ -2709,6 +2732,36 @@ doctrine@^3.0.0:
2709
2732
  dependencies:
2710
2733
  esutils "^2.0.2"
2711
2734
 
2735
+ dom-serializer@^2.0.0:
2736
+ version "2.0.0"
2737
+ resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
2738
+ integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
2739
+ dependencies:
2740
+ domelementtype "^2.3.0"
2741
+ domhandler "^5.0.2"
2742
+ entities "^4.2.0"
2743
+
2744
+ domelementtype@^2.3.0:
2745
+ version "2.3.0"
2746
+ resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
2747
+ integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
2748
+
2749
+ domhandler@^5.0.2, domhandler@^5.0.3:
2750
+ version "5.0.3"
2751
+ resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
2752
+ integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
2753
+ dependencies:
2754
+ domelementtype "^2.3.0"
2755
+
2756
+ domutils@^3.1.0:
2757
+ version "3.1.0"
2758
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
2759
+ integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
2760
+ dependencies:
2761
+ dom-serializer "^2.0.0"
2762
+ domelementtype "^2.3.0"
2763
+ domhandler "^5.0.3"
2764
+
2712
2765
  dot-case@^3.0.4:
2713
2766
  version "3.0.4"
2714
2767
  resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
@@ -2724,6 +2777,11 @@ dot-prop@^5.1.0:
2724
2777
  dependencies:
2725
2778
  is-obj "^2.0.0"
2726
2779
 
2780
+ eastasianwidth@^0.2.0:
2781
+ version "0.2.0"
2782
+ resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
2783
+ integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
2784
+
2727
2785
  ecdsa-sig-formatter@1.0.11:
2728
2786
  version "1.0.11"
2729
2787
  resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf"
@@ -2748,6 +2806,11 @@ emoji-regex@^8.0.0:
2748
2806
  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
2749
2807
  integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
2750
2808
 
2809
+ emoji-regex@^9.2.2:
2810
+ version "9.2.2"
2811
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
2812
+ integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
2813
+
2751
2814
  encoding@^0.1.12, encoding@^0.1.13:
2752
2815
  version "0.1.13"
2753
2816
  resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
@@ -2762,6 +2825,11 @@ end-of-stream@^1.1.0:
2762
2825
  dependencies:
2763
2826
  once "^1.4.0"
2764
2827
 
2828
+ entities@^4.2.0, entities@^4.5.0:
2829
+ version "4.5.0"
2830
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
2831
+ integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
2832
+
2765
2833
  env-paths@^2.2.0:
2766
2834
  version "2.2.1"
2767
2835
  resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
@@ -2864,6 +2932,11 @@ escalade@^3.1.1:
2864
2932
  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
2865
2933
  integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
2866
2934
 
2935
+ escape-html@^1.0.3:
2936
+ version "1.0.3"
2937
+ resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
2938
+ integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
2939
+
2867
2940
  escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0:
2868
2941
  version "4.0.0"
2869
2942
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
@@ -3159,6 +3232,11 @@ execa@^5.0.0, execa@^5.1.1:
3159
3232
  signal-exit "^3.0.3"
3160
3233
  strip-final-newline "^2.0.0"
3161
3234
 
3235
+ extend@^3.0.2:
3236
+ version "3.0.2"
3237
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
3238
+ integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
3239
+
3162
3240
  external-editor@^3.0.3:
3163
3241
  version "3.1.0"
3164
3242
  resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
@@ -3355,6 +3433,14 @@ foreground-child@^2.0.0:
3355
3433
  cross-spawn "^7.0.0"
3356
3434
  signal-exit "^3.0.2"
3357
3435
 
3436
+ foreground-child@^3.1.0:
3437
+ version "3.1.1"
3438
+ resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
3439
+ integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
3440
+ dependencies:
3441
+ cross-spawn "^7.0.0"
3442
+ signal-exit "^4.0.1"
3443
+
3358
3444
  form-data@^4.0.0:
3359
3445
  version "4.0.0"
3360
3446
  resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
@@ -3453,6 +3539,16 @@ gauge@^4.0.3:
3453
3539
  strip-ansi "^6.0.1"
3454
3540
  wide-align "^1.1.5"
3455
3541
 
3542
+ gaxios@^6.0.0:
3543
+ version "6.1.1"
3544
+ resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-6.1.1.tgz#549629f86a13e756b900f9ff7c94624670102938"
3545
+ integrity sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==
3546
+ dependencies:
3547
+ extend "^3.0.2"
3548
+ https-proxy-agent "^7.0.1"
3549
+ is-stream "^2.0.0"
3550
+ node-fetch "^2.6.9"
3551
+
3456
3552
  gensync@^1.0.0-beta.2:
3457
3553
  version "1.0.0-beta.2"
3458
3554
  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -3552,6 +3648,17 @@ glob@7.2.0:
3552
3648
  once "^1.3.0"
3553
3649
  path-is-absolute "^1.0.0"
3554
3650
 
3651
+ glob@^10.3.10:
3652
+ version "10.3.10"
3653
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
3654
+ integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
3655
+ dependencies:
3656
+ foreground-child "^3.1.0"
3657
+ jackspeak "^2.3.5"
3658
+ minimatch "^9.0.1"
3659
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
3660
+ path-scurry "^1.10.1"
3661
+
3555
3662
  glob@^7.0.0, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
3556
3663
  version "7.2.3"
3557
3664
  resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
@@ -3773,6 +3880,16 @@ html-escaper@^2.0.0:
3773
3880
  resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
3774
3881
  integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
3775
3882
 
3883
+ htmlparser2@^9.0.0:
3884
+ version "9.0.0"
3885
+ resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-9.0.0.tgz#e431142b7eeb1d91672742dea48af8ac7140cddb"
3886
+ integrity sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==
3887
+ dependencies:
3888
+ domelementtype "^2.3.0"
3889
+ domhandler "^5.0.3"
3890
+ domutils "^3.1.0"
3891
+ entities "^4.5.0"
3892
+
3776
3893
  http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0:
3777
3894
  version "4.1.1"
3778
3895
  resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
@@ -3829,6 +3946,14 @@ https-proxy-agent@^5.0.0:
3829
3946
  agent-base "6"
3830
3947
  debug "4"
3831
3948
 
3949
+ https-proxy-agent@^7.0.1:
3950
+ version "7.0.2"
3951
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz#e2645b846b90e96c6e6f347fb5b2e41f1590b09b"
3952
+ integrity sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==
3953
+ dependencies:
3954
+ agent-base "^7.0.2"
3955
+ debug "4"
3956
+
3832
3957
  human-signals@^1.1.1:
3833
3958
  version "1.1.1"
3834
3959
  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
@@ -4332,6 +4457,15 @@ istanbul-reports@^3.0.2:
4332
4457
  html-escaper "^2.0.0"
4333
4458
  istanbul-lib-report "^3.0.0"
4334
4459
 
4460
+ jackspeak@^2.3.5:
4461
+ version "2.3.6"
4462
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
4463
+ integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
4464
+ dependencies:
4465
+ "@isaacs/cliui" "^8.0.2"
4466
+ optionalDependencies:
4467
+ "@pkgjs/parseargs" "^0.11.0"
4468
+
4335
4469
  jake@^10.8.5:
4336
4470
  version "10.8.5"
4337
4471
  resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46"
@@ -4588,6 +4722,22 @@ lines-and-columns@^1.1.6:
4588
4722
  resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
4589
4723
  integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
4590
4724
 
4725
+ linkinator@^6.0.2:
4726
+ version "6.0.2"
4727
+ resolved "https://registry.yarnpkg.com/linkinator/-/linkinator-6.0.2.tgz#6a33df3372894a2fa3b25f80f2cd5e6bb9f73e7d"
4728
+ integrity sha512-28eiQVzGwaCvVUb/cxii5jraWZYUv5n2Q5CaSRUH9oGDo1Jr8GcREnpw/0IfJ5YTRoIt9/ihra2lG8yqCN292g==
4729
+ dependencies:
4730
+ chalk "^5.0.0"
4731
+ escape-html "^1.0.3"
4732
+ gaxios "^6.0.0"
4733
+ glob "^10.3.10"
4734
+ htmlparser2 "^9.0.0"
4735
+ marked "^10.0.0"
4736
+ meow "^12.0.1"
4737
+ mime "^3.0.0"
4738
+ server-destroy "^1.0.1"
4739
+ srcset "^5.0.0"
4740
+
4591
4741
  load-yaml-file@^0.2.0:
4592
4742
  version "0.2.0"
4593
4743
  resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d"
@@ -4783,6 +4933,11 @@ lru-cache@^7.7.1:
4783
4933
  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.16.0.tgz#b1b946cff368d3f3c569cc3d6a5ba8f90435160f"
4784
4934
  integrity sha512-VJBdeMa9Bz27NNlx+DI/YXGQtXdjUU+9gdfN1rYfra7vtTjhodl5tVNmR42bo+ORHuDqDT+lGAUAb+lzvY42Bw==
4785
4935
 
4936
+ "lru-cache@^9.1.1 || ^10.0.0":
4937
+ version "10.1.0"
4938
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.1.0.tgz#2098d41c2dc56500e6c88584aa656c84de7d0484"
4939
+ integrity sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==
4940
+
4786
4941
  lunr@^2.3.9:
4787
4942
  version "2.3.9"
4788
4943
  resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1"
@@ -4854,6 +5009,11 @@ map-obj@^4.0.0:
4854
5009
  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
4855
5010
  integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
4856
5011
 
5012
+ marked@^10.0.0:
5013
+ version "10.0.0"
5014
+ resolved "https://registry.yarnpkg.com/marked/-/marked-10.0.0.tgz#7fe1805bb908433d760e2de0fcc8841a2b2d745c"
5015
+ integrity sha512-YiGcYcWj50YrwBgNzFoYhQ1hT6GmQbFG8SksnYJX1z4BXTHSOrz1GB5/Jm2yQvMg4nN1FHP4M6r03R10KrVUiA==
5016
+
4857
5017
  marked@^4.3.0:
4858
5018
  version "4.3.0"
4859
5019
  resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
@@ -4885,6 +5045,11 @@ marked@^4.3.0:
4885
5045
  vinyl "^2.0.1"
4886
5046
  vinyl-file "^3.0.0"
4887
5047
 
5048
+ meow@^12.0.1:
5049
+ version "12.1.1"
5050
+ resolved "https://registry.yarnpkg.com/meow/-/meow-12.1.1.tgz#e558dddbab12477b69b2e9a2728c327f191bace6"
5051
+ integrity sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==
5052
+
4888
5053
  meow@^8.0.0:
4889
5054
  version "8.1.2"
4890
5055
  resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
@@ -4932,6 +5097,11 @@ mime-types@^2.1.12:
4932
5097
  dependencies:
4933
5098
  mime-db "1.52.0"
4934
5099
 
5100
+ mime@^3.0.0:
5101
+ version "3.0.0"
5102
+ resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
5103
+ integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
5104
+
4935
5105
  mimic-fn@^2.1.0:
4936
5106
  version "2.1.0"
4937
5107
  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
@@ -4973,7 +5143,7 @@ minimatch@^5.0.1:
4973
5143
  dependencies:
4974
5144
  brace-expansion "^2.0.1"
4975
5145
 
4976
- minimatch@^9.0.3:
5146
+ minimatch@^9.0.1, minimatch@^9.0.3:
4977
5147
  version "9.0.3"
4978
5148
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
4979
5149
  integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
@@ -5064,6 +5234,11 @@ minipass@^4.0.0:
5064
5234
  resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.3.tgz#00bfbaf1e16e35e804f4aa31a7c1f6b8d9f0ee72"
5065
5235
  integrity sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==
5066
5236
 
5237
+ "minipass@^5.0.0 || ^6.0.2 || ^7.0.0":
5238
+ version "7.0.4"
5239
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
5240
+ integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
5241
+
5067
5242
  minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2:
5068
5243
  version "2.1.2"
5069
5244
  resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
@@ -5217,7 +5392,7 @@ no-case@^3.0.4:
5217
5392
  lower-case "^2.0.2"
5218
5393
  tslib "^2.0.3"
5219
5394
 
5220
- node-fetch@^2.6.1, node-fetch@^2.6.7:
5395
+ node-fetch@^2.6.1, node-fetch@^2.6.7, node-fetch@^2.6.9:
5221
5396
  version "2.7.0"
5222
5397
  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
5223
5398
  integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
@@ -5766,6 +5941,14 @@ path-parse@^1.0.7:
5766
5941
  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
5767
5942
  integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
5768
5943
 
5944
+ path-scurry@^1.10.1:
5945
+ version "1.10.1"
5946
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
5947
+ integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
5948
+ dependencies:
5949
+ lru-cache "^9.1.1 || ^10.0.0"
5950
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
5951
+
5769
5952
  path-to-regexp@^1.7.0:
5770
5953
  version "1.8.0"
5771
5954
  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
@@ -6401,6 +6584,11 @@ serialize-javascript@6.0.0:
6401
6584
  dependencies:
6402
6585
  randombytes "^2.1.0"
6403
6586
 
6587
+ server-destroy@^1.0.1:
6588
+ version "1.0.1"
6589
+ resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"
6590
+ integrity sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==
6591
+
6404
6592
  set-blocking@^2.0.0:
6405
6593
  version "2.0.0"
6406
6594
  resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
@@ -6495,6 +6683,11 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
6495
6683
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
6496
6684
  integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
6497
6685
 
6686
+ signal-exit@^4.0.1:
6687
+ version "4.1.0"
6688
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
6689
+ integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
6690
+
6498
6691
  simple-swizzle@^0.2.2:
6499
6692
  version "0.2.2"
6500
6693
  resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
@@ -6649,6 +6842,11 @@ sprintf-js@~1.0.2:
6649
6842
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
6650
6843
  integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
6651
6844
 
6845
+ srcset@^5.0.0:
6846
+ version "5.0.0"
6847
+ resolved "https://registry.yarnpkg.com/srcset/-/srcset-5.0.0.tgz#9df6c3961b5b44a02532ce6ae4544832609e2e3f"
6848
+ integrity sha512-SqEZaAEhe0A6ETEa9O1IhSPC7MdvehZtCnTR0AftXk3QhY2UNgb+NApFOUPZILXk/YTDfFxMTNJOBpzrJsEdIA==
6849
+
6652
6850
  ssri@^8.0.0, ssri@^8.0.1:
6653
6851
  version "8.0.1"
6654
6852
  resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
@@ -6663,7 +6861,7 @@ ssri@^9.0.0:
6663
6861
  dependencies:
6664
6862
  minipass "^3.1.1"
6665
6863
 
6666
- "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
6864
+ "string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
6667
6865
  version "4.2.3"
6668
6866
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
6669
6867
  integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -6672,6 +6870,15 @@ ssri@^9.0.0:
6672
6870
  is-fullwidth-code-point "^3.0.0"
6673
6871
  strip-ansi "^6.0.1"
6674
6872
 
6873
+ string-width@^5.0.1, string-width@^5.1.2:
6874
+ version "5.1.2"
6875
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
6876
+ integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
6877
+ dependencies:
6878
+ eastasianwidth "^0.2.0"
6879
+ emoji-regex "^9.2.2"
6880
+ strip-ansi "^7.0.1"
6881
+
6675
6882
  string.prototype.trim@^1.2.8:
6676
6883
  version "1.2.8"
6677
6884
  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd"
@@ -6713,13 +6920,20 @@ string_decoder@~1.1.1:
6713
6920
  dependencies:
6714
6921
  safe-buffer "~5.1.0"
6715
6922
 
6716
- strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
6923
+ "strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
6717
6924
  version "6.0.1"
6718
6925
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
6719
6926
  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
6720
6927
  dependencies:
6721
6928
  ansi-regex "^5.0.1"
6722
6929
 
6930
+ strip-ansi@^7.0.1:
6931
+ version "7.1.0"
6932
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
6933
+ integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
6934
+ dependencies:
6935
+ ansi-regex "^6.0.1"
6936
+
6723
6937
  strip-bom-buf@^1.0.0:
6724
6938
  version "1.0.0"
6725
6939
  resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572"
@@ -7411,6 +7625,15 @@ workerpool@6.2.1:
7411
7625
  resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
7412
7626
  integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
7413
7627
 
7628
+ "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
7629
+ version "7.0.0"
7630
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
7631
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
7632
+ dependencies:
7633
+ ansi-styles "^4.0.0"
7634
+ string-width "^4.1.0"
7635
+ strip-ansi "^6.0.0"
7636
+
7414
7637
  wrap-ansi@^6.2.0:
7415
7638
  version "6.2.0"
7416
7639
  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@@ -7420,14 +7643,14 @@ wrap-ansi@^6.2.0:
7420
7643
  string-width "^4.1.0"
7421
7644
  strip-ansi "^6.0.0"
7422
7645
 
7423
- wrap-ansi@^7.0.0:
7424
- version "7.0.0"
7425
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
7426
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
7646
+ wrap-ansi@^8.1.0:
7647
+ version "8.1.0"
7648
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
7649
+ integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
7427
7650
  dependencies:
7428
- ansi-styles "^4.0.0"
7429
- string-width "^4.1.0"
7430
- strip-ansi "^6.0.0"
7651
+ ansi-styles "^6.1.0"
7652
+ string-width "^5.0.1"
7653
+ strip-ansi "^7.0.1"
7431
7654
 
7432
7655
  wrappy@1:
7433
7656
  version "1.0.2"
@@ -28,7 +28,7 @@
28
28
  "name": "target-org",
29
29
  "noCacheDefault": true,
30
30
  "required": true,
31
- "summary": "Username or alias of the target org.",
31
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
32
32
  "hasDynamicHelp": true,
33
33
  "multiple": false,
34
34
  "type": "option"
@@ -136,7 +136,7 @@
136
136
  "name": "target-dev-hub",
137
137
  "noCacheDefault": true,
138
138
  "required": true,
139
- "summary": "Username or alias of the Dev Hub org.",
139
+ "summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
140
140
  "hasDynamicHelp": true,
141
141
  "multiple": false,
142
142
  "type": "option"
@@ -281,7 +281,7 @@
281
281
  "name": "target-org",
282
282
  "noCacheDefault": true,
283
283
  "required": true,
284
- "summary": "Username or alias of the target org.",
284
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
285
285
  "hasDynamicHelp": true,
286
286
  "multiple": false,
287
287
  "type": "option"
@@ -400,7 +400,7 @@
400
400
  "name": "target-dev-hub",
401
401
  "noCacheDefault": true,
402
402
  "required": true,
403
- "summary": "Username or alias of the Dev Hub org.",
403
+ "summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
404
404
  "hasDynamicHelp": true,
405
405
  "multiple": false,
406
406
  "type": "option"
@@ -519,7 +519,7 @@
519
519
  "name": "target-dev-hub",
520
520
  "noCacheDefault": true,
521
521
  "required": true,
522
- "summary": "Username or alias of the Dev Hub org.",
522
+ "summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
523
523
  "hasDynamicHelp": true,
524
524
  "multiple": false,
525
525
  "type": "option"
@@ -728,7 +728,7 @@
728
728
  "name": "target-dev-hub",
729
729
  "noCacheDefault": true,
730
730
  "required": true,
731
- "summary": "Username or alias of the Dev Hub org.",
731
+ "summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
732
732
  "hasDynamicHelp": true,
733
733
  "multiple": false,
734
734
  "type": "option"
@@ -810,5 +810,5 @@
810
810
  ]
811
811
  }
812
812
  },
813
- "version": "2.0.6"
813
+ "version": "2.0.7"
814
814
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-signups",
3
3
  "description": "Commands to interact with org shapes",
4
- "version": "2.0.6",
4
+ "version": "2.0.7",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^3.13.1",
8
+ "@oclif/core": "^3.14.1",
9
9
  "@salesforce/core": "^6.2.2",
10
10
  "@salesforce/kit": "^3.0.15",
11
11
  "@salesforce/sf-plugins-core": "^5.0.1",
@@ -15,8 +15,8 @@
15
15
  "devDependencies": {
16
16
  "@oclif/plugin-command-snapshot": "^5.0.2",
17
17
  "@salesforce/cli-plugins-testkit": "^5.0.4",
18
- "@salesforce/dev-scripts": "^8.0.0",
19
- "@salesforce/plugin-command-reference": "^3.0.46",
18
+ "@salesforce/dev-scripts": "^8.1.0",
19
+ "@salesforce/plugin-command-reference": "^3.0.51",
20
20
  "@salesforce/ts-types": "^2.0.9",
21
21
  "@types/chai-as-promised": "^7.1.8",
22
22
  "@types/chai-string": "^1.4.5",
@@ -125,6 +125,7 @@
125
125
  "compile": "wireit",
126
126
  "docs": "sf-docs",
127
127
  "format": "wireit",
128
+ "link-check": "wireit",
128
129
  "lint": "wireit",
129
130
  "postpack": "shx rm -f oclif.manifest.json oclif.lock",
130
131
  "prepack": "sf-prepack",
@@ -195,7 +196,8 @@
195
196
  "test:command-reference",
196
197
  "test:deprecation-policy",
197
198
  "lint",
198
- "test:json-schema"
199
+ "test:json-schema",
200
+ "link-check"
199
201
  ]
200
202
  },
201
203
  "test:only": {
@@ -214,7 +216,7 @@
214
216
  "output": []
215
217
  },
216
218
  "test:command-reference": {
217
- "command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
219
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
218
220
  "files": [
219
221
  "src/**/*.ts",
220
222
  "messages/**",
@@ -225,7 +227,7 @@
225
227
  ]
226
228
  },
227
229
  "test:deprecation-policy": {
228
- "command": "ts-node \"./bin/dev.js\" snapshot:compare",
230
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
229
231
  "files": [
230
232
  "src/**/*.ts"
231
233
  ],
@@ -235,18 +237,27 @@
235
237
  ]
236
238
  },
237
239
  "test:json-schema": {
238
- "command": "ts-node \"./bin/dev.js\" schema:compare",
240
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
239
241
  "files": [
240
242
  "src/**/*.ts",
241
243
  "schemas"
242
244
  ],
243
245
  "output": []
246
+ },
247
+ "link-check": {
248
+ "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
249
+ "files": [
250
+ "./*.md",
251
+ "./!(CHANGELOG).md",
252
+ "messages/**/*.md"
253
+ ],
254
+ "output": []
244
255
  }
245
256
  },
246
257
  "exports": "./lib/index.js",
247
258
  "type": "module",
248
259
  "sfdx": {
249
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.6.crt",
250
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.6.sig"
260
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.7.crt",
261
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.7.sig"
251
262
  }
252
263
  }