Skip to content

Commit ced4669

Browse files
committed
Merge branch 'feature/ARSN-516/add-nodemon' into q/8.2
2 parents a4937f4 + fed2bda commit ced4669

File tree

3 files changed

+116
-14
lines changed

3 files changed

+116
-14
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,14 @@
33
Please follow the
44
[Contributing Guidelines](
55
https://github.com/scality/Guidelines/blob/master/CONTRIBUTING.md).
6+
7+
## Development
8+
9+
To set up your development environment, run:
10+
11+
```bash
12+
yarn install
13+
yarn dev
14+
```
15+
16+
`dev` will watch for changes and recompile the code automatically with nodemon.

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"globals": "^16.3.0",
7272
"jest": "^29.7.0",
7373
"mongodb-memory-server": "^10.2.0",
74+
"nodemon": "^3.1.10",
7475
"nyc": "^17.1.0",
7576
"sinon": "^21.0.0",
7677
"temp": "^0.9.4",
@@ -80,16 +81,17 @@
8081
"typescript-eslint": "^8.39.0"
8182
},
8283
"scripts": {
84+
"build": "tsc",
85+
"build_doc": "cd documentation/listingAlgos/pics; dot -Tsvg delimiterStateChart.dot > delimiterStateChart.svg; dot -Tsvg delimiterMasterV0StateChart.dot > delimiterMasterV0StateChart.svg; dot -Tsvg delimiterVersionsStateChart.dot > delimiterVersionsStateChart.svg",
86+
"coverage": "export NODE_OPTIONS=\"--tls-max-v1.2\" && nyc --clean jest tests --coverage --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
87+
"dev": "nodemon --ext ts --ignore build --exec \"yarn build\"",
88+
"ft_pykmip_test": "jest tests/functional/pykmip",
89+
"ft_test": "jest tests/functional --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
8390
"lint": "eslint $(git ls-files '*ts' ' *.js')",
8491
"lint_md": "mdlint $(git ls-files '*.md')",
8592
"lint_yml": "yamllint $(git ls-files '*.yml')",
86-
"test": "export NODE_OPTIONS=\"--tls-max-v1.2\" && jest tests/unit --detectOpenHandles",
87-
"build": "tsc",
8893
"prepare": "yarn build",
89-
"ft_test": "jest tests/functional --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
90-
"ft_pykmip_test": "jest tests/functional/pykmip",
91-
"coverage": "export NODE_OPTIONS=\"--tls-max-v1.2\" && nyc --clean jest tests --coverage --testTimeout=120000 --forceExit --testPathIgnorePatterns tests/functional/pykmip",
92-
"build_doc": "cd documentation/listingAlgos/pics; dot -Tsvg delimiterStateChart.dot > delimiterStateChart.svg; dot -Tsvg delimiterMasterV0StateChart.dot > delimiterMasterV0StateChart.svg; dot -Tsvg delimiterVersionsStateChart.dot > delimiterVersionsStateChart.svg"
94+
"test": "export NODE_OPTIONS=\"--tls-max-v1.2\" && jest tests/unit --detectOpenHandles"
9395
},
9496
"private": true,
9597
"jest": {

yarn.lock

Lines changed: 97 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ ansi-styles@^6.1.0:
22472247
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
22482248
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
22492249

2250-
anymatch@^3.0.3:
2250+
anymatch@^3.0.3, anymatch@~3.1.2:
22512251
version "3.1.3"
22522252
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
22532253
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
@@ -2532,6 +2532,11 @@ [email protected], base64id@~2.0.0:
25322532
resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6"
25332533
integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
25342534

2535+
binary-extensions@^2.0.0:
2536+
version "2.3.0"
2537+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
2538+
integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
2539+
25352540
bindings@^1.1.1, bindings@^1.5.0:
25362541
version "1.5.0"
25372542
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
@@ -2566,7 +2571,7 @@ brace-expansion@^2.0.1:
25662571
dependencies:
25672572
balanced-match "^1.0.0"
25682573

2569-
braces@^3.0.3:
2574+
braces@^3.0.3, braces@~3.0.2:
25702575
version "3.0.3"
25712576
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
25722577
integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
@@ -2743,6 +2748,21 @@ char-regex@^1.0.2:
27432748
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
27442749
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
27452750

2751+
chokidar@^3.5.2:
2752+
version "3.6.0"
2753+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
2754+
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
2755+
dependencies:
2756+
anymatch "~3.1.2"
2757+
braces "~3.0.2"
2758+
glob-parent "~5.1.2"
2759+
is-binary-path "~2.1.0"
2760+
is-glob "~4.0.1"
2761+
normalize-path "~3.0.0"
2762+
readdirp "~3.6.0"
2763+
optionalDependencies:
2764+
fsevents "~2.3.2"
2765+
27462766
chownr@^3.0.0:
27472767
version "3.0.0"
27482768
resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4"
@@ -2912,7 +2932,7 @@ data-view-byte-offset@^1.0.0:
29122932
es-errors "^1.3.0"
29132933
is-data-view "^1.0.1"
29142934

2915-
debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.4.1:
2935+
debug@4, debug@^4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.4.1:
29162936
version "4.4.1"
29172937
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b"
29182938
integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==
@@ -3630,7 +3650,7 @@ fs.realpath@^1.0.0:
36303650
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
36313651
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
36323652

3633-
fsevents@^2.3.2:
3653+
fsevents@^2.3.2, fsevents@~2.3.2:
36343654
version "2.3.3"
36353655
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
36363656
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
@@ -3695,7 +3715,7 @@ get-symbol-description@^1.0.2:
36953715
es-errors "^1.3.0"
36963716
get-intrinsic "^1.2.4"
36973717

3698-
glob-parent@^5.1.2:
3718+
glob-parent@^5.1.2, glob-parent@~5.1.2:
36993719
version "5.1.2"
37003720
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
37013721
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
@@ -3790,6 +3810,11 @@ has-bigints@^1.0.1, has-bigints@^1.0.2:
37903810
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
37913811
integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
37923812

3813+
has-flag@^3.0.0:
3814+
version "3.0.0"
3815+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
3816+
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
3817+
37933818
has-flag@^4.0.0:
37943819
version "4.0.0"
37953820
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
@@ -3895,6 +3920,11 @@ ieee754@^1.1.13, ieee754@^1.1.4:
38953920
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
38963921
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
38973922

3923+
ignore-by-default@^1.0.1:
3924+
version "1.0.1"
3925+
resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
3926+
integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==
3927+
38983928
ignore@^5.2.0:
38993929
version "5.3.2"
39003930
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
@@ -4034,6 +4064,13 @@ is-bigint@^1.0.1:
40344064
dependencies:
40354065
has-bigints "^1.0.1"
40364066

4067+
is-binary-path@~2.1.0:
4068+
version "2.1.0"
4069+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
4070+
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
4071+
dependencies:
4072+
binary-extensions "^2.0.0"
4073+
40374074
is-boolean-object@^1.1.0:
40384075
version "1.1.2"
40394076
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
@@ -4109,7 +4146,7 @@ is-generator-function@^1.0.10, is-generator-function@^1.0.7:
41094146
dependencies:
41104147
has-tostringtag "^1.0.0"
41114148

4112-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
4149+
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
41134150
version "4.0.3"
41144151
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
41154152
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
@@ -5462,14 +5499,30 @@ node-releases@^2.0.19:
54625499
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
54635500
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
54645501

5502+
nodemon@^3.1.10:
5503+
version "3.1.10"
5504+
resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.10.tgz#5015c5eb4fffcb24d98cf9454df14f4fecec9bc1"
5505+
integrity sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==
5506+
dependencies:
5507+
chokidar "^3.5.2"
5508+
debug "^4"
5509+
ignore-by-default "^1.0.1"
5510+
minimatch "^3.1.2"
5511+
pstree.remy "^1.1.8"
5512+
semver "^7.5.3"
5513+
simple-update-notifier "^2.0.0"
5514+
supports-color "^5.5.0"
5515+
touch "^3.1.0"
5516+
undefsafe "^2.0.5"
5517+
54655518
nopt@^8.0.0:
54665519
version "8.1.0"
54675520
resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3"
54685521
integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==
54695522
dependencies:
54705523
abbrev "^3.0.0"
54715524

5472-
normalize-path@^3.0.0:
5525+
normalize-path@^3.0.0, normalize-path@~3.0.0:
54735526
version "3.0.0"
54745527
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
54755528
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
@@ -5723,7 +5776,7 @@ picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1:
57235776
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
57245777
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
57255778

5726-
picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1:
5779+
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1:
57275780
version "2.3.1"
57285781
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
57295782
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
@@ -5814,6 +5867,11 @@ prr@~1.0.1:
58145867
resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
58155868
integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
58165869

5870+
pstree.remy@^1.1.8:
5871+
version "1.1.8"
5872+
resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
5873+
integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==
5874+
58175875
pull-cat@^1.1.9:
58185876
version "1.1.11"
58195877
resolved "https://registry.yarnpkg.com/pull-cat/-/pull-cat-1.1.11.tgz#b642dd1255da376a706b6db4fa962f5fdb74c31b"
@@ -5916,6 +5974,13 @@ readable-stream@~1.0.26:
59165974
isarray "0.0.1"
59175975
string_decoder "~0.10.x"
59185976

5977+
readdirp@~3.6.0:
5978+
version "3.6.0"
5979+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
5980+
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
5981+
dependencies:
5982+
picomatch "^2.2.1"
5983+
59195984
redis-errors@^1.0.0, redis-errors@^1.2.0:
59205985
version "1.2.0"
59215986
resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad"
@@ -6243,6 +6308,13 @@ simple-glob@^0.2.0:
62436308
lodash.flatten "^4.4.0"
62446309
lodash.union "^4.6.0"
62456310

6311+
simple-update-notifier@^2.0.0:
6312+
version "2.0.0"
6313+
resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb"
6314+
integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==
6315+
dependencies:
6316+
semver "^7.5.3"
6317+
62466318
sinon@^21.0.0:
62476319
version "21.0.0"
62486320
resolved "https://registry.yarnpkg.com/sinon/-/sinon-21.0.0.tgz#dbda73abc7e6cb803fef3368cfbecbb5936e8a9e"
@@ -6554,6 +6626,13 @@ strnum@^2.1.0:
65546626
resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.1.1.tgz#cf2a6e0cf903728b8b2c4b971b7e36b4e82d46ab"
65556627
integrity sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==
65566628

6629+
supports-color@^5.5.0:
6630+
version "5.5.0"
6631+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
6632+
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
6633+
dependencies:
6634+
has-flag "^3.0.0"
6635+
65576636
supports-color@^7.1.0, supports-color@^7.2.0:
65586637
version "7.2.0"
65596638
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
@@ -6642,6 +6721,11 @@ to-regex-range@^5.0.1:
66426721
dependencies:
66436722
is-number "^7.0.0"
66446723

6724+
touch@^3.1.0:
6725+
version "3.1.1"
6726+
resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.1.tgz#097a23d7b161476435e5c1344a95c0f75b4a5694"
6727+
integrity sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==
6728+
66456729
tr46@^4.1.1:
66466730
version "4.1.1"
66476731
resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469"
@@ -6828,6 +6912,11 @@ unbox-primitive@^1.0.2:
68286912
has-symbols "^1.0.3"
68296913
which-boxed-primitive "^1.0.2"
68306914

6915+
undefsafe@^2.0.5:
6916+
version "2.0.5"
6917+
resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c"
6918+
integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==
6919+
68316920
undici-types@~6.19.8:
68326921
version "6.19.8"
68336922
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02"

0 commit comments

Comments
 (0)