Skip to content

Commit 49ba60b

Browse files
authored
Merge pull request #1391 from no23reason/eslint-ts-6
build: upgrade typescript eslint to 6.0.0
2 parents 7968086 + b43ea82 commit 49ba60b

File tree

6 files changed

+143
-112
lines changed

6 files changed

+143
-112
lines changed

.eslintrc.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
const commonExtends = [
2+
"plugin:@typescript-eslint/recommended",
3+
"plugin:react/recommended",
4+
"plugin:react-hooks/recommended",
5+
"plugin:prettier/recommended",
6+
];
7+
8+
module.exports = {
9+
parser: "@typescript-eslint/parser",
10+
plugins: ["@typescript-eslint"],
11+
extends: commonExtends,
12+
overrides: [
13+
{
14+
files: ["./src/**/*.ts", "./src/**/*.tsx"],
15+
parserOptions: {
16+
project: ["./tsconfig.json"],
17+
},
18+
extends: [
19+
...commonExtends,
20+
"plugin:@typescript-eslint/recommended-type-checked",
21+
"plugin:@typescript-eslint/strict",
22+
],
23+
},
24+
],
25+
settings: {
26+
react: {
27+
version: "detect",
28+
},
29+
},
30+
ignorePatterns: "demo",
31+
};

.eslintrc.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

demo/DemoPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useRef } from "react";
1+
import React from "react";
22
import { Demo } from "./Demo";
33

44
export const DemoPage = () => {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
"@types/jest": "^29.2.1",
6161
"@types/react": "^18.0.9",
6262
"@types/react-test-renderer": "^18.0.0",
63-
"@typescript-eslint/eslint-plugin": "^5.59.5",
64-
"@typescript-eslint/parser": "^5.26.0",
63+
"@typescript-eslint/eslint-plugin": "^6.0.0",
64+
"@typescript-eslint/parser": "^6.0.0",
6565
"autoprefixer": "^10.4.2",
6666
"cz-conventional-changelog": "^3.0.2",
6767
"eslint": "^8.7.0",

src/index.ts

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export function useGeolocated(config: GeolocatedConfig = {}): GeolocatedResult {
103103

104104
const userDecisionTimeoutId = useRef(0);
105105
const isCurrentlyMounted = useRef(true);
106-
const watchId = useRef<number | void>(0);
106+
const watchId = useRef<number>(0);
107107

108108
const [isGeolocationEnabled, setIsGeolocationEnabled] = useState(
109109
isOptimisticGeolocationEnabled,
@@ -160,23 +160,25 @@ export function useGeolocated(config: GeolocatedConfig = {}): GeolocatedResult {
160160
throw new Error("The provided geolocation provider is invalid");
161161
}
162162

163-
const funcPosition = (
164-
watchPosition
165-
? geolocationProvider.watchPosition
166-
: geolocationProvider.getCurrentPosition
167-
).bind(geolocationProvider);
168-
169163
if (userDecisionTimeout) {
170164
userDecisionTimeoutId.current = window.setTimeout(() => {
171165
handlePositionError();
172166
}, userDecisionTimeout);
173167
}
174168

175-
watchId.current = funcPosition(
176-
handlePositionSuccess,
177-
handlePositionError,
178-
positionOptions,
179-
);
169+
if (watchPosition) {
170+
watchId.current = geolocationProvider.watchPosition(
171+
handlePositionSuccess,
172+
handlePositionError,
173+
positionOptions,
174+
);
175+
} else {
176+
geolocationProvider.getCurrentPosition(
177+
handlePositionSuccess,
178+
handlePositionError,
179+
positionOptions,
180+
);
181+
}
180182
}, [
181183
geolocationProvider,
182184
watchPosition,
@@ -201,6 +203,9 @@ export function useGeolocated(config: GeolocatedConfig = {}): GeolocatedResult {
201203
permission.onchange = () => {
202204
setPermissionState(permission.state);
203205
};
206+
})
207+
.catch((e) => {
208+
console.error("Error updating the permissions", e);
204209
});
205210
}
206211

yarn.lock

Lines changed: 92 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -384,11 +384,23 @@
384384
dependencies:
385385
eslint-visitor-keys "^3.3.0"
386386

387+
"@eslint-community/eslint-utils@^4.3.0":
388+
version "4.4.0"
389+
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
390+
integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
391+
dependencies:
392+
eslint-visitor-keys "^3.3.0"
393+
387394
"@eslint-community/regexpp@^4.4.0":
388395
version "4.4.0"
389396
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403"
390397
integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==
391398

399+
"@eslint-community/regexpp@^4.5.0":
400+
version "4.5.1"
401+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
402+
integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
403+
392404
"@eslint/eslintrc@^2.1.0":
393405
version "2.1.0"
394406
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
@@ -2019,10 +2031,10 @@
20192031
"@types/tough-cookie" "*"
20202032
parse5 "^7.0.0"
20212033

2022-
"@types/json-schema@^7.0.9":
2023-
version "7.0.11"
2024-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
2025-
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
2034+
"@types/json-schema@^7.0.11":
2035+
version "7.0.12"
2036+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
2037+
integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
20262038

20272039
"@types/minimatch@^3.0.3":
20282040
version "3.0.3"
@@ -2121,89 +2133,93 @@
21212133
dependencies:
21222134
"@types/yargs-parser" "*"
21232135

2124-
"@typescript-eslint/eslint-plugin@^5.59.5":
2125-
version "5.61.0"
2126-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.61.0.tgz#a1a5290cf33863b4db3fb79350b3c5275a7b1223"
2127-
integrity sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==
2128-
dependencies:
2129-
"@eslint-community/regexpp" "^4.4.0"
2130-
"@typescript-eslint/scope-manager" "5.61.0"
2131-
"@typescript-eslint/type-utils" "5.61.0"
2132-
"@typescript-eslint/utils" "5.61.0"
2136+
"@typescript-eslint/eslint-plugin@^6.0.0":
2137+
version "6.0.0"
2138+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.0.0.tgz#19ff4f1cab8d6f8c2c1825150f7a840bc5d9bdc4"
2139+
integrity sha512-xuv6ghKGoiq856Bww/yVYnXGsKa588kY3M0XK7uUW/3fJNNULKRfZfSBkMTSpqGG/8ZCXCadfh8G/z/B4aqS/A==
2140+
dependencies:
2141+
"@eslint-community/regexpp" "^4.5.0"
2142+
"@typescript-eslint/scope-manager" "6.0.0"
2143+
"@typescript-eslint/type-utils" "6.0.0"
2144+
"@typescript-eslint/utils" "6.0.0"
2145+
"@typescript-eslint/visitor-keys" "6.0.0"
21332146
debug "^4.3.4"
2147+
grapheme-splitter "^1.0.4"
21342148
graphemer "^1.4.0"
2135-
ignore "^5.2.0"
2149+
ignore "^5.2.4"
2150+
natural-compare "^1.4.0"
21362151
natural-compare-lite "^1.4.0"
2137-
semver "^7.3.7"
2138-
tsutils "^3.21.0"
2152+
semver "^7.5.0"
2153+
ts-api-utils "^1.0.1"
21392154

2140-
"@typescript-eslint/parser@^5.26.0":
2141-
version "5.61.0"
2142-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.61.0.tgz#7fbe3e2951904bb843f8932ebedd6e0635bffb70"
2143-
integrity sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==
2155+
"@typescript-eslint/parser@^6.0.0":
2156+
version "6.0.0"
2157+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.0.0.tgz#46b2600fd1f67e62fc00a28093a75f41bf7effc4"
2158+
integrity sha512-TNaufYSPrr1U8n+3xN+Yp9g31vQDJqhXzzPSHfQDLcaO4tU+mCfODPxCwf4H530zo7aUBE3QIdxCXamEnG04Tg==
21442159
dependencies:
2145-
"@typescript-eslint/scope-manager" "5.61.0"
2146-
"@typescript-eslint/types" "5.61.0"
2147-
"@typescript-eslint/typescript-estree" "5.61.0"
2160+
"@typescript-eslint/scope-manager" "6.0.0"
2161+
"@typescript-eslint/types" "6.0.0"
2162+
"@typescript-eslint/typescript-estree" "6.0.0"
2163+
"@typescript-eslint/visitor-keys" "6.0.0"
21482164
debug "^4.3.4"
21492165

2150-
"@typescript-eslint/scope-manager@5.61.0":
2151-
version "5.61.0"
2152-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.61.0.tgz#b670006d069c9abe6415c41f754b1b5d949ef2b2"
2153-
integrity sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==
2166+
"@typescript-eslint/scope-manager@6.0.0":
2167+
version "6.0.0"
2168+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.0.0.tgz#8ede47a37cb2b7ed82d329000437abd1113b5e11"
2169+
integrity sha512-o4q0KHlgCZTqjuaZ25nw5W57NeykZT9LiMEG4do/ovwvOcPnDO1BI5BQdCsUkjxFyrCL0cSzLjvIMfR9uo7cWg==
21542170
dependencies:
2155-
"@typescript-eslint/types" "5.61.0"
2156-
"@typescript-eslint/visitor-keys" "5.61.0"
2171+
"@typescript-eslint/types" "6.0.0"
2172+
"@typescript-eslint/visitor-keys" "6.0.0"
21572173

2158-
"@typescript-eslint/type-utils@5.61.0":
2159-
version "5.61.0"
2160-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.61.0.tgz#e90799eb2045c4435ea8378cb31cd8a9fddca47a"
2161-
integrity sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==
2174+
"@typescript-eslint/type-utils@6.0.0":
2175+
version "6.0.0"
2176+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.0.0.tgz#0478d8a94f05e51da2877cc0500f1b3c27ac7e18"
2177+
integrity sha512-ah6LJvLgkoZ/pyJ9GAdFkzeuMZ8goV6BH7eC9FPmojrnX9yNCIsfjB+zYcnex28YO3RFvBkV6rMV6WpIqkPvoQ==
21622178
dependencies:
2163-
"@typescript-eslint/typescript-estree" "5.61.0"
2164-
"@typescript-eslint/utils" "5.61.0"
2179+
"@typescript-eslint/typescript-estree" "6.0.0"
2180+
"@typescript-eslint/utils" "6.0.0"
21652181
debug "^4.3.4"
2166-
tsutils "^3.21.0"
2182+
ts-api-utils "^1.0.1"
21672183

2168-
"@typescript-eslint/types@5.61.0":
2169-
version "5.61.0"
2170-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.61.0.tgz#e99ff11b5792d791554abab0f0370936d8ca50c0"
2171-
integrity sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==
2184+
"@typescript-eslint/types@6.0.0":
2185+
version "6.0.0"
2186+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.0.0.tgz#19795f515f8decbec749c448b0b5fc76d82445a1"
2187+
integrity sha512-Zk9KDggyZM6tj0AJWYYKgF0yQyrcnievdhG0g5FqyU3Y2DRxJn4yWY21sJC0QKBckbsdKKjYDV2yVrrEvuTgxg==
21722188

2173-
"@typescript-eslint/typescript-estree@5.61.0":
2174-
version "5.61.0"
2175-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.61.0.tgz#4c7caca84ce95bb41aa585d46a764bcc050b92f3"
2176-
integrity sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==
2189+
"@typescript-eslint/typescript-estree@6.0.0":
2190+
version "6.0.0"
2191+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.0.0.tgz#1e09aab7320e404fb9f83027ea568ac24e372f81"
2192+
integrity sha512-2zq4O7P6YCQADfmJ5OTDQTP3ktajnXIRrYAtHM9ofto/CJZV3QfJ89GEaM2BNGeSr1KgmBuLhEkz5FBkS2RQhQ==
21772193
dependencies:
2178-
"@typescript-eslint/types" "5.61.0"
2179-
"@typescript-eslint/visitor-keys" "5.61.0"
2194+
"@typescript-eslint/types" "6.0.0"
2195+
"@typescript-eslint/visitor-keys" "6.0.0"
21802196
debug "^4.3.4"
21812197
globby "^11.1.0"
21822198
is-glob "^4.0.3"
2183-
semver "^7.3.7"
2184-
tsutils "^3.21.0"
2199+
semver "^7.5.0"
2200+
ts-api-utils "^1.0.1"
21852201

2186-
"@typescript-eslint/utils@5.61.0":
2187-
version "5.61.0"
2188-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.61.0.tgz#5064838a53e91c754fffbddd306adcca3fe0af36"
2189-
integrity sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==
2202+
"@typescript-eslint/utils@6.0.0":
2203+
version "6.0.0"
2204+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.0.0.tgz#27a16d0d8f2719274a39417b9782f7daa3802db0"
2205+
integrity sha512-SOr6l4NB6HE4H/ktz0JVVWNXqCJTOo/mHnvIte1ZhBQ0Cvd04x5uKZa3zT6tiodL06zf5xxdK8COiDvPnQ27JQ==
21902206
dependencies:
2191-
"@eslint-community/eslint-utils" "^4.2.0"
2192-
"@types/json-schema" "^7.0.9"
2207+
"@eslint-community/eslint-utils" "^4.3.0"
2208+
"@types/json-schema" "^7.0.11"
21932209
"@types/semver" "^7.3.12"
2194-
"@typescript-eslint/scope-manager" "5.61.0"
2195-
"@typescript-eslint/types" "5.61.0"
2196-
"@typescript-eslint/typescript-estree" "5.61.0"
2210+
"@typescript-eslint/scope-manager" "6.0.0"
2211+
"@typescript-eslint/types" "6.0.0"
2212+
"@typescript-eslint/typescript-estree" "6.0.0"
21972213
eslint-scope "^5.1.1"
2198-
semver "^7.3.7"
2214+
semver "^7.5.0"
21992215

2200-
"@typescript-eslint/visitor-keys@5.61.0":
2201-
version "5.61.0"
2202-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.61.0.tgz#c79414fa42158fd23bd2bb70952dc5cdbb298140"
2203-
integrity sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==
2216+
"@typescript-eslint/visitor-keys@6.0.0":
2217+
version "6.0.0"
2218+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.0.0.tgz#0b49026049fbd096d2c00c5e784866bc69532a31"
2219+
integrity sha512-cvJ63l8c0yXdeT5POHpL0Q1cZoRcmRKFCtSjNGJxPkcP571EfZMcNbzWAc7oK3D1dRzm/V5EwtkANTZxqvuuUA==
22042220
dependencies:
2205-
"@typescript-eslint/types" "5.61.0"
2206-
eslint-visitor-keys "^3.3.0"
2221+
"@typescript-eslint/types" "6.0.0"
2222+
eslint-visitor-keys "^3.4.1"
22072223

22082224
JSONStream@^1.3.5:
22092225
version "1.3.5"
@@ -4376,6 +4392,11 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11,
43764392
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
43774393
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
43784394

4395+
grapheme-splitter@^1.0.4:
4396+
version "1.0.4"
4397+
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
4398+
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
4399+
43794400
graphemer@^1.4.0:
43804401
version "1.4.0"
43814402
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
@@ -7652,7 +7673,7 @@ semver@^6.0.0, semver@^6.3.0:
76527673
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
76537674
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
76547675

7655-
semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.2, semver@^7.5.3:
7676+
semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.0, semver@^7.5.2, semver@^7.5.3:
76567677
version "7.5.4"
76577678
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
76587679
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
@@ -8268,6 +8289,11 @@ trim-newlines@^3.0.0:
82688289
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
82698290
integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
82708291

8292+
ts-api-utils@^1.0.1:
8293+
version "1.0.1"
8294+
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.1.tgz#8144e811d44c749cd65b2da305a032510774452d"
8295+
integrity sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==
8296+
82718297
ts-interface-checker@^0.1.9:
82728298
version "0.1.13"
82738299
resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
@@ -8305,7 +8331,7 @@ ts-node@^10.4.0:
83058331
make-error "^1.1.1"
83068332
yn "3.1.1"
83078333

8308-
tslib@^1.8.1, tslib@^1.9.0:
8334+
tslib@^1.9.0:
83098335
version "1.14.1"
83108336
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
83118337
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
@@ -8315,13 +8341,6 @@ tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0:
83158341
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3"
83168342
integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==
83178343

8318-
tsutils@^3.21.0:
8319-
version "3.21.0"
8320-
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
8321-
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
8322-
dependencies:
8323-
tslib "^1.8.1"
8324-
83258344
tuf-js@^1.1.7:
83268345
version "1.1.7"
83278346
resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43"

0 commit comments

Comments
 (0)