Skip to content

Commit 558c2ef

Browse files
committed
chore: update typescript
1 parent 4beb23c commit 558c2ef

File tree

3 files changed

+147
-99
lines changed

3 files changed

+147
-99
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"@types/node": "^20.10.5",
6262
"@types/react": "^17.0.6",
6363
"@types/react-dom": "^17.0.5",
64-
"@typescript-eslint/eslint-plugin": "^4.24.0",
65-
"@typescript-eslint/parser": "^4.24.0",
64+
"@typescript-eslint/eslint-plugin": "^6.16.0",
65+
"@typescript-eslint/parser": "^6.16.0",
6666
"codecov": "^3.8.3",
6767
"cross-env": "^7.0.3",
6868
"eslint": "^7.27.0",
@@ -86,7 +86,7 @@
8686
"ts-jest": "^29.1.1",
8787
"ts-node": "^10.9.2",
8888
"tslib": "^2.3.0",
89-
"typescript": "^4.2.4"
89+
"typescript": "^5.3.3"
9090
},
9191
"peerDependencies": {
9292
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"

src/components/CurrencyInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ export const CurrencyInput: FC<CurrencyInputProps> = forwardRef<
266266
) || 0;
267267
const newValue = key === 'ArrowUp' ? currentValue + step : currentValue - step;
268268

269-
if (min !== undefined && newValue < min) {
269+
if (min !== undefined && newValue < Number(min)) {
270270
return;
271271
}
272272

273-
if (max !== undefined && newValue > max) {
273+
if (max !== undefined && newValue > Number(max)) {
274274
return;
275275
}
276276

yarn.lock

Lines changed: 142 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,18 @@
505505
dependencies:
506506
"@jridgewell/trace-mapping" "0.3.9"
507507

508+
"@eslint-community/eslint-utils@^4.4.0":
509+
version "4.4.0"
510+
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
511+
integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
512+
dependencies:
513+
eslint-visitor-keys "^3.3.0"
514+
515+
"@eslint-community/regexpp@^4.5.1":
516+
version "4.10.0"
517+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63"
518+
integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
519+
508520
"@eslint/eslintrc@^0.4.3":
509521
version "0.4.3"
510522
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
@@ -2261,7 +2273,7 @@
22612273
"@types/tough-cookie" "*"
22622274
parse5 "^7.0.0"
22632275

2264-
"@types/json-schema@^7.0.7":
2276+
"@types/json-schema@^7.0.12":
22652277
version "7.0.15"
22662278
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
22672279
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
@@ -2333,6 +2345,11 @@
23332345
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.6.tgz#eb26db6780c513de59bee0b869ef289ad3068711"
23342346
integrity sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==
23352347

2348+
"@types/semver@^7.5.0":
2349+
version "7.5.6"
2350+
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339"
2351+
integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==
2352+
23362353
"@types/stack-utils@^2.0.0":
23372354
version "2.0.1"
23382355
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
@@ -2369,75 +2386,91 @@
23692386
dependencies:
23702387
"@types/yargs-parser" "*"
23712388

2372-
"@typescript-eslint/eslint-plugin@^4.24.0":
2373-
version "4.33.0"
2374-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz#c24dc7c8069c7706bc40d99f6fa87edcb2005276"
2375-
integrity sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==
2376-
dependencies:
2377-
"@typescript-eslint/experimental-utils" "4.33.0"
2378-
"@typescript-eslint/scope-manager" "4.33.0"
2379-
debug "^4.3.1"
2380-
functional-red-black-tree "^1.0.1"
2381-
ignore "^5.1.8"
2382-
regexpp "^3.1.0"
2383-
semver "^7.3.5"
2384-
tsutils "^3.21.0"
2385-
2386-
"@typescript-eslint/[email protected]":
2387-
version "4.33.0"
2388-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz#6f2a786a4209fa2222989e9380b5331b2810f7fd"
2389-
integrity sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==
2390-
dependencies:
2391-
"@types/json-schema" "^7.0.7"
2392-
"@typescript-eslint/scope-manager" "4.33.0"
2393-
"@typescript-eslint/types" "4.33.0"
2394-
"@typescript-eslint/typescript-estree" "4.33.0"
2395-
eslint-scope "^5.1.1"
2396-
eslint-utils "^3.0.0"
2397-
2398-
"@typescript-eslint/parser@^4.24.0":
2399-
version "4.33.0"
2400-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899"
2401-
integrity sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==
2402-
dependencies:
2403-
"@typescript-eslint/scope-manager" "4.33.0"
2404-
"@typescript-eslint/types" "4.33.0"
2405-
"@typescript-eslint/typescript-estree" "4.33.0"
2406-
debug "^4.3.1"
2407-
2408-
"@typescript-eslint/[email protected]":
2409-
version "4.33.0"
2410-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz#d38e49280d983e8772e29121cf8c6e9221f280a3"
2411-
integrity sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==
2412-
dependencies:
2413-
"@typescript-eslint/types" "4.33.0"
2414-
"@typescript-eslint/visitor-keys" "4.33.0"
2415-
2416-
"@typescript-eslint/[email protected]":
2417-
version "4.33.0"
2418-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"
2419-
integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==
2420-
2421-
"@typescript-eslint/[email protected]":
2422-
version "4.33.0"
2423-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609"
2424-
integrity sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==
2425-
dependencies:
2426-
"@typescript-eslint/types" "4.33.0"
2427-
"@typescript-eslint/visitor-keys" "4.33.0"
2428-
debug "^4.3.1"
2429-
globby "^11.0.3"
2430-
is-glob "^4.0.1"
2431-
semver "^7.3.5"
2432-
tsutils "^3.21.0"
2389+
"@typescript-eslint/eslint-plugin@^6.16.0":
2390+
version "6.16.0"
2391+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.16.0.tgz#cc29fbd208ea976de3db7feb07755bba0ce8d8bc"
2392+
integrity sha512-O5f7Kv5o4dLWQtPX4ywPPa+v9G+1q1x8mz0Kr0pXUtKsevo+gIJHLkGc8RxaZWtP8RrhwhSNIWThnW42K9/0rQ==
2393+
dependencies:
2394+
"@eslint-community/regexpp" "^4.5.1"
2395+
"@typescript-eslint/scope-manager" "6.16.0"
2396+
"@typescript-eslint/type-utils" "6.16.0"
2397+
"@typescript-eslint/utils" "6.16.0"
2398+
"@typescript-eslint/visitor-keys" "6.16.0"
2399+
debug "^4.3.4"
2400+
graphemer "^1.4.0"
2401+
ignore "^5.2.4"
2402+
natural-compare "^1.4.0"
2403+
semver "^7.5.4"
2404+
ts-api-utils "^1.0.1"
2405+
2406+
"@typescript-eslint/parser@^6.16.0":
2407+
version "6.16.0"
2408+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.16.0.tgz#36f39f63b126aa25af2ad2df13d9891e9fd5b40c"
2409+
integrity sha512-H2GM3eUo12HpKZU9njig3DF5zJ58ja6ahj1GoHEHOgQvYxzoFJJEvC1MQ7T2l9Ha+69ZSOn7RTxOdpC/y3ikMw==
2410+
dependencies:
2411+
"@typescript-eslint/scope-manager" "6.16.0"
2412+
"@typescript-eslint/types" "6.16.0"
2413+
"@typescript-eslint/typescript-estree" "6.16.0"
2414+
"@typescript-eslint/visitor-keys" "6.16.0"
2415+
debug "^4.3.4"
2416+
2417+
"@typescript-eslint/[email protected]":
2418+
version "6.16.0"
2419+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.16.0.tgz#f3e9a00fbc1d0701356359cd56489c54d9e37168"
2420+
integrity sha512-0N7Y9DSPdaBQ3sqSCwlrm9zJwkpOuc6HYm7LpzLAPqBL7dmzAUimr4M29dMkOP/tEwvOCC/Cxo//yOfJD3HUiw==
2421+
dependencies:
2422+
"@typescript-eslint/types" "6.16.0"
2423+
"@typescript-eslint/visitor-keys" "6.16.0"
2424+
2425+
"@typescript-eslint/[email protected]":
2426+
version "6.16.0"
2427+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.16.0.tgz#5f21c3e49e540ad132dc87fc99af463c184d5ed1"
2428+
integrity sha512-ThmrEOcARmOnoyQfYkHw/DX2SEYBalVECmoldVuH6qagKROp/jMnfXpAU/pAIWub9c4YTxga+XwgAkoA0pxfmg==
2429+
dependencies:
2430+
"@typescript-eslint/typescript-estree" "6.16.0"
2431+
"@typescript-eslint/utils" "6.16.0"
2432+
debug "^4.3.4"
2433+
ts-api-utils "^1.0.1"
2434+
2435+
"@typescript-eslint/[email protected]":
2436+
version "6.16.0"
2437+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.16.0.tgz#a3abe0045737d44d8234708d5ed8fef5d59dc91e"
2438+
integrity sha512-hvDFpLEvTJoHutVl87+MG/c5C8I6LOgEx05zExTSJDEVU7hhR3jhV8M5zuggbdFCw98+HhZWPHZeKS97kS3JoQ==
2439+
2440+
"@typescript-eslint/[email protected]":
2441+
version "6.16.0"
2442+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.16.0.tgz#d6e0578e4f593045f0df06c4b3a22bd6f13f2d03"
2443+
integrity sha512-VTWZuixh/vr7nih6CfrdpmFNLEnoVBF1skfjdyGnNwXOH1SLeHItGdZDHhhAIzd3ACazyY2Fg76zuzOVTaknGA==
2444+
dependencies:
2445+
"@typescript-eslint/types" "6.16.0"
2446+
"@typescript-eslint/visitor-keys" "6.16.0"
2447+
debug "^4.3.4"
2448+
globby "^11.1.0"
2449+
is-glob "^4.0.3"
2450+
minimatch "9.0.3"
2451+
semver "^7.5.4"
2452+
ts-api-utils "^1.0.1"
2453+
2454+
"@typescript-eslint/[email protected]":
2455+
version "6.16.0"
2456+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.16.0.tgz#1c291492d34670f9210d2b7fcf6b402bea3134ae"
2457+
integrity sha512-T83QPKrBm6n//q9mv7oiSvy/Xq/7Hyw9SzSEhMHJwznEmQayfBM87+oAlkNAMEO7/MjIwKyOHgBJbxB0s7gx2A==
2458+
dependencies:
2459+
"@eslint-community/eslint-utils" "^4.4.0"
2460+
"@types/json-schema" "^7.0.12"
2461+
"@types/semver" "^7.5.0"
2462+
"@typescript-eslint/scope-manager" "6.16.0"
2463+
"@typescript-eslint/types" "6.16.0"
2464+
"@typescript-eslint/typescript-estree" "6.16.0"
2465+
semver "^7.5.4"
24332466

2434-
"@typescript-eslint/visitor-keys@4.33.0":
2435-
version "4.33.0"
2436-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd"
2437-
integrity sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==
2467+
"@typescript-eslint/visitor-keys@6.16.0":
2468+
version "6.16.0"
2469+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.16.0.tgz#d50da18a05d91318ed3e7e8889bda0edc35f3a10"
2470+
integrity sha512-QSFQLruk7fhs91a/Ep/LqRdbJCZ1Rq03rqBdKT5Ky17Sz8zRLUksqIe9DW0pKtg/Z35/ztbLQ6qpOCN6rOC11A==
24382471
dependencies:
2439-
"@typescript-eslint/types" "4.33.0"
2440-
eslint-visitor-keys "^2.0.0"
2472+
"@typescript-eslint/types" "6.16.0"
2473+
eslint-visitor-keys "^3.4.1"
24412474

24422475
JSONStream@^1.0.4:
24432476
version "1.3.5"
@@ -2944,6 +2977,13 @@ brace-expansion@^1.1.7:
29442977
balanced-match "^1.0.0"
29452978
concat-map "0.0.1"
29462979

2980+
brace-expansion@^2.0.1:
2981+
version "2.0.1"
2982+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
2983+
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
2984+
dependencies:
2985+
balanced-match "^1.0.0"
2986+
29472987
braces@^3.0.2:
29482988
version "3.0.2"
29492989
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
@@ -3547,7 +3587,7 @@ dateformat@^3.0.0:
35473587
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
35483588
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
35493589

3550-
debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3:
3590+
debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
35513591
version "4.3.4"
35523592
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
35533593
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
@@ -4035,13 +4075,6 @@ eslint-utils@^2.1.0:
40354075
dependencies:
40364076
eslint-visitor-keys "^1.1.0"
40374077

4038-
eslint-utils@^3.0.0:
4039-
version "3.0.0"
4040-
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
4041-
integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
4042-
dependencies:
4043-
eslint-visitor-keys "^2.0.0"
4044-
40454078
eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
40464079
version "1.3.0"
40474080
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
@@ -4052,6 +4085,11 @@ eslint-visitor-keys@^2.0.0:
40524085
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
40534086
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
40544087

4088+
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
4089+
version "3.4.3"
4090+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
4091+
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
4092+
40554093
eslint@^7.27.0:
40564094
version "7.32.0"
40574095
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
@@ -4646,7 +4684,7 @@ globalthis@^1.0.3:
46464684
dependencies:
46474685
define-properties "^1.1.3"
46484686

4649-
globby@^11.0.0, globby@^11.0.1, globby@^11.0.3:
4687+
globby@^11.0.0, globby@^11.0.1, globby@^11.1.0:
46504688
version "11.1.0"
46514689
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
46524690
integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
@@ -4681,6 +4719,11 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3,
46814719
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
46824720
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
46834721

4722+
graphemer@^1.4.0:
4723+
version "1.4.0"
4724+
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
4725+
integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
4726+
46844727
handlebars@^4.7.6:
46854728
version "4.7.8"
46864729
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9"
@@ -4886,11 +4929,16 @@ ignore@^4.0.6:
48864929
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
48874930
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
48884931

4889-
ignore@^5.1.8, ignore@^5.2.0:
4932+
ignore@^5.2.0:
48904933
version "5.2.4"
48914934
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
48924935
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
48934936

4937+
ignore@^5.2.4:
4938+
version "5.3.0"
4939+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78"
4940+
integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==
4941+
48944942
import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
48954943
version "3.3.0"
48964944
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
@@ -6430,6 +6478,13 @@ min-indent@^1.0.0:
64306478
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
64316479
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
64326480

6481+
6482+
version "9.0.3"
6483+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
6484+
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
6485+
dependencies:
6486+
brace-expansion "^2.0.1"
6487+
64336488
minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
64346489
version "3.1.2"
64356490
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -8592,6 +8647,11 @@ trim-repeated@^1.0.0:
85928647
dependencies:
85938648
escape-string-regexp "^1.0.2"
85948649

8650+
ts-api-utils@^1.0.1:
8651+
version "1.0.3"
8652+
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331"
8653+
integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==
8654+
85958655
ts-jest@^29.1.1:
85968656
version "29.1.1"
85978657
resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b"
@@ -8625,23 +8685,11 @@ ts-node@^10.9.2:
86258685
v8-compile-cache-lib "^3.0.1"
86268686
yn "3.1.1"
86278687

8628-
tslib@^1.8.1:
8629-
version "1.14.1"
8630-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
8631-
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
8632-
86338688
tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0:
86348689
version "2.6.2"
86358690
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
86368691
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
86378692

8638-
tsutils@^3.21.0:
8639-
version "3.21.0"
8640-
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
8641-
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
8642-
dependencies:
8643-
tslib "^1.8.1"
8644-
86458693
tunnel-agent@^0.6.0:
86468694
version "0.6.0"
86478695
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
@@ -8742,10 +8790,10 @@ typedarray-to-buffer@^3.1.5:
87428790
dependencies:
87438791
is-typedarray "^1.0.0"
87448792

8745-
typescript@^4.2.4:
8746-
version "4.9.5"
8747-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
8748-
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
8793+
typescript@^5.3.3:
8794+
version "5.3.3"
8795+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
8796+
integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
87498797

87508798
uglify-js@^3.1.4:
87518799
version "3.17.4"

0 commit comments

Comments
 (0)