Skip to content

Commit a15acd4

Browse files
committed
✨ tweak: update cross-spawn version to ^7.0.0
1 parent cb140b4 commit a15acd4

File tree

1 file changed

+53
-3
lines changed

1 file changed

+53
-3
lines changed

yarn.lock

Lines changed: 53 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ cosmiconfig@^7.1.0:
12441244
path-type "^4.0.0"
12451245
yaml "^1.10.0"
12461246

1247-
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
1247+
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
12481248
version "7.0.3"
12491249
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
12501250
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@@ -1429,6 +1429,13 @@ emoji-regex@^9.2.2:
14291429
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
14301430
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
14311431

1432+
end-of-stream@^1.1.0:
1433+
version "1.4.4"
1434+
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
1435+
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
1436+
dependencies:
1437+
once "^1.4.0"
1438+
14321439
enhance-visitors@^1.0.0:
14331440
version "1.0.0"
14341441
resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a"
@@ -1952,6 +1959,21 @@ event-target-shim@^5.0.0:
19521959
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
19531960
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
19541961

1962+
execa@^4.0.3:
1963+
version "4.1.0"
1964+
resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
1965+
integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
1966+
dependencies:
1967+
cross-spawn "^7.0.0"
1968+
get-stream "^5.0.0"
1969+
human-signals "^1.1.1"
1970+
is-stream "^2.0.0"
1971+
merge-stream "^2.0.0"
1972+
npm-run-path "^4.0.0"
1973+
onetime "^5.1.0"
1974+
signal-exit "^3.0.2"
1975+
strip-final-newline "^2.0.0"
1976+
19551977
execa@^5.1.1:
19561978
version "5.1.1"
19571979
resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
@@ -2188,6 +2210,13 @@ get-stdin@^9.0.0:
21882210
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-9.0.0.tgz#3983ff82e03d56f1b2ea0d3e60325f39d703a575"
21892211
integrity sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==
21902212

2213+
get-stream@^5.0.0:
2214+
version "5.2.0"
2215+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
2216+
integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
2217+
dependencies:
2218+
pump "^3.0.0"
2219+
21912220
get-stream@^6.0.0:
21922221
version "6.0.1"
21932222
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
@@ -2370,6 +2399,11 @@ hosted-git-info@^5.0.0:
23702399
dependencies:
23712400
lru-cache "^7.5.1"
23722401

2402+
human-signals@^1.1.1:
2403+
version "1.1.1"
2404+
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
2405+
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
2406+
23732407
human-signals@^2.1.0:
23742408
version "2.1.0"
23752409
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
@@ -2683,6 +2717,14 @@ is-get-set-prop@^1.0.0:
26832717
get-set-props "^0.1.0"
26842718
lowercase-keys "^1.0.0"
26852719

2720+
is-git-repository@^2.0.0:
2721+
version "2.0.0"
2722+
resolved "https://registry.yarnpkg.com/is-git-repository/-/is-git-repository-2.0.0.tgz#fa036007fe9697198c2c89dac4dd8304a6101e1c"
2723+
integrity sha512-HDO50CG5suIAcmqG4F1buqVXEZRPn+RaXIn9pFKq/947FBo2bCRwK7ZluEVZOy99a4IQyqsjbKEpAiOXCccOHQ==
2724+
dependencies:
2725+
execa "^4.0.3"
2726+
is-absolute "^1.0.0"
2727+
26862728
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
26872729
version "4.0.3"
26882730
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -3349,7 +3391,7 @@ normalize-path@^3.0.0, normalize-path@~3.0.0:
33493391
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
33503392
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
33513393

3352-
npm-run-path@^4.0.1:
3394+
npm-run-path@^4.0.0, npm-run-path@^4.0.1:
33533395
version "4.0.1"
33543396
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
33553397
integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
@@ -3439,7 +3481,7 @@ object.values@^1.1.6, object.values@^1.1.7:
34393481
define-properties "^1.2.0"
34403482
es-abstract "^1.22.1"
34413483

3442-
once@^1.3.0:
3484+
once@^1.3.0, once@^1.3.1, once@^1.4.0:
34433485
version "1.4.0"
34443486
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
34453487
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
@@ -3738,6 +3780,14 @@ proto-props@^2.0.0:
37383780
resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-2.0.0.tgz#8ac6e6dec658545815c623a3bc81580deda9a181"
37393781
integrity sha512-2yma2tog9VaRZY2mn3Wq51uiSW4NcPYT1cQdBagwyrznrilKSZwIZ0UG3ZPL/mx+axEns0hE35T5ufOYZXEnBQ==
37403782

3783+
pump@^3.0.0:
3784+
version "3.0.0"
3785+
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
3786+
integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
3787+
dependencies:
3788+
end-of-stream "^1.1.0"
3789+
once "^1.3.1"
3790+
37413791
punycode@^2.1.0:
37423792
version "2.3.1"
37433793
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"

0 commit comments

Comments
 (0)