Skip to content

Commit 6817bee

Browse files
authoredMar 6, 2023
[cli] Update dependencies (#20)
* [cli] Update dependencies * [cli] Enable `compilerOptions.skipLibCheck` * [cli] Rewrite fallbacks for updated TypeScript * [cli] Lint files again for updated Prettier
1 parent 2d5fc2d commit 6817bee

File tree

5 files changed

+114
-85
lines changed

5 files changed

+114
-85
lines changed
 

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"start": "node lib/index.js"
1818
},
1919
"dependencies": {
20-
"git-url-parse": "^13.0.0",
21-
"zx": "^7.0.8"
20+
"git-url-parse": "^13.1.0",
21+
"zx": "^7.2.0"
2222
},
2323
"devDependencies": {
24-
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
25-
"@types/node": "^18.7.17",
26-
"prettier": "^2.7.1",
27-
"typescript": "^4.8.3"
24+
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
25+
"@types/node": "^18.14.6",
26+
"prettier": "^2.8.4",
27+
"typescript": "^4.9.5"
2828
},
2929
"files": [
3030
"./bin",

‎src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const OPTIONS = {
1818
'--fg-token': 'fgToken',
1919
} as const;
2020
type OptionAlias = keyof typeof OPTIONS;
21-
type Option = typeof OPTIONS[OptionAlias];
21+
type Option = (typeof OPTIONS)[OptionAlias];
2222
const isKnownOption = (arg: string): arg is OptionAlias =>
2323
Object.keys(OPTIONS).includes(arg);
2424

‎src/utils/submodules.ts

+9-6
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,18 @@ export const fetchSubmodules = async (
5151
: path;
5252
pathName = pathName.split('/').slice(-1)[0];
5353

54-
const resolvingBranch =
55-
zx.$`git config --file .gitmodules --get submodule.${gitModulePath}.branch`
56-
.then((output) => output.stdout.trim() || undefined)
57-
.catch(() => /* if branch is not specified */ undefined);
58-
const resolvingURL =
54+
const resolvingBranch: Promise<string | undefined> =
55+
zx.$`git config --file .gitmodules --get submodule.${gitModulePath}.branch`.then(
56+
(output) => output.stdout.trim() || undefined,
57+
);
58+
const resolvingURL: Promise<string> =
5959
zx.$`git config --file .gitmodules --get submodule.${gitModulePath}.url`.then(
6060
(output) => output.stdout.trim(),
6161
);
62-
const [branch, url] = await Promise.all([resolvingBranch, resolvingURL]);
62+
const [branch, url] = await Promise.all([
63+
resolvingBranch.catch(() => /* if branch is not specified */ undefined),
64+
resolvingURL,
65+
]);
6366
submodules.push({ commitHash, path, branch, url, gitModulePath });
6467
});
6568
}

‎tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"declaration": true,
88
"outDir": "lib",
99
"strict": true,
10+
"skipLibCheck": true,
1011
"esModuleInterop": true,
1112
"resolveJsonModule": true,
1213
"typeRoots": ["node_modules/@types", "src/types"]

‎yarn.lock

+97-72
Original file line numberDiff line numberDiff line change
@@ -189,18 +189,19 @@
189189
"@babel/helper-validator-identifier" "^7.18.6"
190190
to-fast-properties "^2.0.0"
191191

192-
"@ianvs/prettier-plugin-sort-imports@^3.4.2":
193-
version "3.4.2"
194-
resolved "https://registry.yarnpkg.com/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-3.4.2.tgz#8b05c7e1c0484551dfcff439f1e53f41a510ab42"
195-
integrity sha512-HB2BLfnm3Jee+GiGtK7f5hLcFbF54VbSAoH9UEaWpjMmrbaZCTViJeuXsycA1Adm2colaHCpqhLW5E70umh6ug==
192+
"@ianvs/prettier-plugin-sort-imports@^3.7.1":
193+
version "3.7.1"
194+
resolved "https://registry.yarnpkg.com/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-3.7.1.tgz#260baf4bde78e6abf5dd1ab556f7ecf9054948b7"
195+
integrity sha512-XDnBUUruJY9KgNd7T2ZHnVPWo5B9NzVDCLEMm7HjXTA3rTtMg5Q46gYRjLvampDXSmN8+icu54aRE3IIT8U+1w==
196196
dependencies:
197197
"@babel/core" "^7.17.7"
198198
"@babel/generator" "^7.17.7"
199199
"@babel/parser" "^7.17.7"
200200
"@babel/traverse" "^7.17.3"
201201
"@babel/types" "^7.17.0"
202202
javascript-natural-sort "0.7.1"
203-
lodash "^4.17.21"
203+
lodash.clone "^4.5.0"
204+
lodash.isequal "^4.5.0"
204205

205206
"@jridgewell/gen-mapping@^0.1.0":
206207
version "0.1.1"
@@ -263,10 +264,18 @@
263264
"@nodelib/fs.scandir" "2.1.5"
264265
fastq "^1.6.0"
265266

266-
"@types/fs-extra@^9.0.13":
267-
version "9.0.13"
268-
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45"
269-
integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==
267+
"@types/fs-extra@^11.0.1":
268+
version "11.0.1"
269+
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-11.0.1.tgz#f542ec47810532a8a252127e6e105f487e0a6ea5"
270+
integrity sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==
271+
dependencies:
272+
"@types/jsonfile" "*"
273+
"@types/node" "*"
274+
275+
"@types/jsonfile@*":
276+
version "6.1.1"
277+
resolved "https://registry.yarnpkg.com/@types/jsonfile/-/jsonfile-6.1.1.tgz#ac84e9aefa74a2425a0fb3012bdea44f58970f1b"
278+
integrity sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==
270279
dependencies:
271280
"@types/node" "*"
272281

@@ -275,20 +284,25 @@
275284
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c"
276285
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
277286

278-
"@types/node@*", "@types/node@^18.6.3", "@types/node@^18.7.17":
287+
"@types/node@*":
279288
version "18.7.17"
280289
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.17.tgz#52438111ea98f77475470fc62d79b9eb96bb2c92"
281290
integrity sha512-0UyfUnt02zIuqp7yC8RYtDkp/vo8bFaQ13KkSEvUAohPOAlnVNbj5Fi3fgPSuwzakS+EvvnnZ4x9y7i6ASaSPQ==
282291

292+
"@types/node@^18.14.2", "@types/node@^18.14.6":
293+
version "18.14.6"
294+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.6.tgz#ae1973dd2b1eeb1825695bb11ebfb746d27e3e93"
295+
integrity sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==
296+
283297
"@types/ps-tree@^1.1.2":
284298
version "1.1.2"
285299
resolved "https://registry.yarnpkg.com/@types/ps-tree/-/ps-tree-1.1.2.tgz#5c60773a38ffb1402e049902a7b7a8d3c67cd59a"
286300
integrity sha512-ZREFYlpUmPQJ0esjxoG1fMvB2HNaD3z+mjqdSosZvd3RalncI9NEur73P8ZJz4YQdL64CmV1w0RuqoRUlhQRBw==
287301

288-
"@types/which@^2.0.1":
289-
version "2.0.1"
290-
resolved "https://registry.yarnpkg.com/@types/which/-/which-2.0.1.tgz#27ecd67f915b7c3d6ba552135bb1eecd66e63501"
291-
integrity sha512-Jjakcv8Roqtio6w1gr0D7y6twbhx6gGgFGF5BLwajPpnOIOxFkakFhCq+LmyyeAz7BX6ULrjBOxdKaCDy+4+dQ==
302+
"@types/which@^2.0.2":
303+
version "2.0.2"
304+
resolved "https://registry.yarnpkg.com/@types/which/-/which-2.0.2.tgz#54541d02d6b1daee5ec01ac0d1b37cecf37db1ae"
305+
integrity sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw==
292306

293307
ansi-styles@^3.2.1:
294308
version "3.2.1"
@@ -328,10 +342,10 @@ chalk@^2.0.0:
328342
escape-string-regexp "^1.0.5"
329343
supports-color "^5.3.0"
330344

331-
chalk@^5.0.1:
332-
version "5.0.1"
333-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6"
334-
integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==
345+
chalk@^5.2.0:
346+
version "5.2.0"
347+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
348+
integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
335349

336350
color-convert@^1.9.0:
337351
version "1.9.3"
@@ -449,10 +463,10 @@ from@~0:
449463
resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe"
450464
integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==
451465

452-
fs-extra@^10.1.0:
453-
version "10.1.0"
454-
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
455-
integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
466+
fs-extra@^11.1.0:
467+
version "11.1.0"
468+
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.0.tgz#5784b102104433bb0e090f48bfc4a30742c357ed"
469+
integrity sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==
456470
dependencies:
457471
graceful-fs "^4.2.0"
458472
jsonfile "^6.0.1"
@@ -471,10 +485,10 @@ git-up@^7.0.0:
471485
is-ssh "^1.4.0"
472486
parse-url "^8.1.0"
473487

474-
git-url-parse@^13.0.0:
475-
version "13.0.0"
476-
resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.0.0.tgz#9a18d0eaec579fb6379c368aecb09f00b544669c"
477-
integrity sha512-X1kozCqKL82dMrCLi4vie9SHDC+QugKskAMs4VUbIkhURKg5yDwxDmf6Ixg73J+/xVgK5TXKhzn8a94nHJHpnA==
488+
git-url-parse@^13.1.0:
489+
version "13.1.0"
490+
resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4"
491+
integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==
478492
dependencies:
479493
git-up "^7.0.0"
480494

@@ -490,10 +504,10 @@ globals@^11.1.0:
490504
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
491505
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
492506

493-
globby@^13.1.2:
494-
version "13.1.2"
495-
resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.2.tgz#29047105582427ab6eca4f905200667b056da515"
496-
integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==
507+
globby@^13.1.3:
508+
version "13.1.3"
509+
resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff"
510+
integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==
497511
dependencies:
498512
dir-glob "^3.0.1"
499513
fast-glob "^3.2.11"
@@ -574,10 +588,15 @@ jsonfile@^6.0.1:
574588
optionalDependencies:
575589
graceful-fs "^4.1.6"
576590

577-
lodash@^4.17.21:
578-
version "4.17.21"
579-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
580-
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
591+
lodash.clone@^4.5.0:
592+
version "4.5.0"
593+
resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6"
594+
integrity sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==
595+
596+
lodash.isequal@^4.5.0:
597+
version "4.5.0"
598+
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
599+
integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==
581600

582601
map-stream@~0.1.0:
583602
version "0.1.0"
@@ -597,10 +616,10 @@ micromatch@^4.0.4:
597616
braces "^3.0.2"
598617
picomatch "^2.3.1"
599618

600-
minimist@^1.2.6:
601-
version "1.2.6"
602-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
603-
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
619+
minimist@^1.2.8:
620+
version "1.2.8"
621+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
622+
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
604623

605624
ms@2.1.2:
606625
version "2.1.2"
@@ -612,10 +631,10 @@ node-domexception@^1.0.0:
612631
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
613632
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
614633

615-
node-fetch@3.2.8:
616-
version "3.2.8"
617-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.8.tgz#0d9516dcf43a758d78d6dbe538adf0b1f6a4944e"
618-
integrity sha512-KtpD1YhGszhntMpBDyp5lyagk8KIMopC1LEb7cQUAh7zcosaX5uK8HnbNb2i3NTQK3sIawCItS0uFC3QzcLHdg==
634+
node-fetch@3.2.10:
635+
version "3.2.10"
636+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"
637+
integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==
619638
dependencies:
620639
data-uri-to-buffer "^4.0.0"
621640
fetch-blob "^3.1.4"
@@ -662,10 +681,10 @@ picomatch@^2.3.1:
662681
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
663682
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
664683

665-
prettier@^2.7.1:
666-
version "2.7.1"
667-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
668-
integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
684+
prettier@^2.8.4:
685+
version "2.8.4"
686+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3"
687+
integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==
669688

670689
protocols@^2.0.0, protocols@^2.0.1:
671690
version "2.0.1"
@@ -749,10 +768,10 @@ to-regex-range@^5.0.1:
749768
dependencies:
750769
is-number "^7.0.0"
751770

752-
typescript@^4.8.3:
753-
version "4.8.3"
754-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"
755-
integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==
771+
typescript@^4.9.5:
772+
version "4.9.5"
773+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
774+
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
756775

757776
universalify@^2.0.0:
758777
version "2.0.0"
@@ -772,33 +791,39 @@ web-streams-polyfill@^3.0.3:
772791
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
773792
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
774793

775-
which@^2.0.2:
776-
version "2.0.2"
777-
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
778-
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
794+
webpod@^0.0.2:
795+
version "0.0.2"
796+
resolved "https://registry.yarnpkg.com/webpod/-/webpod-0.0.2.tgz#b577c93604fd23596488735887168b3236e3adae"
797+
integrity sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==
798+
799+
which@^3.0.0:
800+
version "3.0.0"
801+
resolved "https://registry.yarnpkg.com/which/-/which-3.0.0.tgz#a9efd016db59728758a390d23f1687b6e8f59f8e"
802+
integrity sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==
779803
dependencies:
780804
isexe "^2.0.0"
781805

782-
yaml@^2.1.1:
783-
version "2.1.1"
784-
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec"
785-
integrity sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==
806+
yaml@^2.2.1:
807+
version "2.2.1"
808+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4"
809+
integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==
786810

787-
zx@^7.0.8:
788-
version "7.0.8"
789-
resolved "https://registry.yarnpkg.com/zx/-/zx-7.0.8.tgz#4a4f2ef060713b5d54f947062a14a67c89818768"
790-
integrity sha512-sNjfDHzskqrSkWNj0TVhaowVK5AbpvuyuO1RBU4+LrFcgYI5u9CtyWWgUBRtRZl3bgGEF31zByszoBmwS47d1w==
811+
zx@^7.2.0:
812+
version "7.2.0"
813+
resolved "https://registry.yarnpkg.com/zx/-/zx-7.2.0.tgz#2973be4ea81ab8b08d310a6e370c98f9c908691c"
814+
integrity sha512-SMuOZ21zFnBxicw+WMtTv3z3eERh6KBtZExAJaL8EAV+Ev/3M1NIAOkrZ8kRfCzD9acv9heUH/WZctTR4vQxBQ==
791815
dependencies:
792-
"@types/fs-extra" "^9.0.13"
816+
"@types/fs-extra" "^11.0.1"
793817
"@types/minimist" "^1.2.2"
794-
"@types/node" "^18.6.3"
818+
"@types/node" "^18.14.2"
795819
"@types/ps-tree" "^1.1.2"
796-
"@types/which" "^2.0.1"
797-
chalk "^5.0.1"
798-
fs-extra "^10.1.0"
799-
globby "^13.1.2"
800-
minimist "^1.2.6"
801-
node-fetch "3.2.8"
820+
"@types/which" "^2.0.2"
821+
chalk "^5.2.0"
822+
fs-extra "^11.1.0"
823+
globby "^13.1.3"
824+
minimist "^1.2.8"
825+
node-fetch "3.2.10"
802826
ps-tree "^1.2.0"
803-
which "^2.0.2"
804-
yaml "^2.1.1"
827+
webpod "^0.0.2"
828+
which "^3.0.0"
829+
yaml "^2.2.1"

0 commit comments

Comments
 (0)
Please sign in to comment.