Skip to content

Commit eeceace

Browse files
author
Luciano Nooijen
committed
Fix broken linting
Signed-off-by: Luciano Nooijen <luciano@bytecode.nl>
1 parent 64ec8c7 commit eeceace

File tree

5 files changed

+158
-54
lines changed

5 files changed

+158
-54
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
2+
root: true,
23
parser: '@typescript-eslint/parser',
34
extends: [
45
'plugin:@typescript-eslint/recommended',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"@babel/core": " ^7.0.0-0",
2525
"@mdx-js/mdx": "^1.6.22",
2626
"@mdx-js/react": "^1.6.22",
27+
"@react-icons/all-files": "^4.1.0",
2728
"@types/jest": "^26.0.19",
2829
"@types/node": "^14.14.12",
2930
"@types/react": "^17.0.0",
@@ -69,10 +70,10 @@
6970
"@types/react-dom": "^17.0.0",
7071
"@types/react-helmet": "^6.1.0",
7172
"@types/styled-components": "^5.1.5",
72-
"@typescript-eslint/eslint-plugin": "^4.9.1",
73-
"@typescript-eslint/parser": "^4.9.1",
73+
"@typescript-eslint/eslint-plugin": "^4.26.1",
74+
"@typescript-eslint/parser": "^4.26.1",
7475
"babel-plugin-styled-components": "^1.5.0",
75-
"eslint": "^7.15.0",
76+
"eslint": "^7.28.0",
7677
"eslint-config-airbnb": "^18.2.1",
7778
"eslint-config-prettier": "^7.0.0",
7879
"eslint-plugin-import": "^2.22.1",
@@ -84,7 +85,6 @@
8485
"eslint-plugin-security": "^1.4.0",
8586
"jest": "^26.6.3",
8687
"prettier": "^2.2.1",
87-
"react-icons": "^4.2.0",
8888
"ts-migrate": "^0.1.10",
8989
"typescript": "^4.1.2"
9090
},

src/containers/IconText/IconText.tsx

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
import React from 'react';
2+
import { FaRegClock } from '@react-icons/all-files/fa/FaRegClock';
3+
import { FaMapMarkerAlt } from '@react-icons/all-files/fa/FaMapMarkerAlt';
24
import { IconTextProps, IconProps } from './IconText.types';
35
import { IconTextContainer, IconStyle } from './IconText.components';
4-
import { FaRegClock, FaMapMarkerAlt } from "react-icons/fa";
56

67
// Creates the Icon
78
const Icon: React.FC<IconProps> = ({ iconName, iconColor }) => {
89
let icon;
9-
if (iconName === "FaMapMarkerAlt") {
10-
icon = <FaMapMarkerAlt />
10+
if (iconName === 'FaMapMarkerAlt') {
11+
icon = <FaMapMarkerAlt />;
1112
}
12-
if (iconName === "FaRegClock") {
13-
icon = <FaRegClock />
13+
if (iconName === 'FaRegClock') {
14+
icon = <FaRegClock />;
1415
}
1516
return <IconStyle style={{ color: iconColor }}>{icon}</IconStyle>;
16-
}
17+
};
1718

1819
// Creates the Icon with Text
19-
const IconText: React.FC<IconTextProps> = ({
20-
iconName,
21-
iconColor,
22-
text
23-
}) => {
20+
const IconText: React.FC<IconTextProps> = ({ iconName, iconColor, text }) => {
2421
return (
2522
<IconTextContainer>
2623
<Icon iconName={iconName} iconColor={iconColor} />
27-
<span style={{ fontSize: "15px" }}>{text}</span>
24+
<span style={{ fontSize: '15px' }}>{text}</span>
2825
</IconTextContainer>
2926
);
3027
};

src/modules.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
declare module 'gatsby-mdx/mdx-renderer' {
2-
import MDXRenderer from 'gatsby-mdx/mdx-renderer';
3-
4-
// eslint-disable-next-line prettier/prettier
5-
export default MDXRenderer;
6-
}
7-
81
declare module 'styled-components-style-utils' {
92
import { reset, debug } from 'styled-components-style-utils';
103

yarn.lock

Lines changed: 144 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,6 +1174,21 @@
11741174
minimatch "^3.0.4"
11751175
strip-json-comments "^3.1.1"
11761176

1177+
"@eslint/eslintrc@^0.4.2":
1178+
version "0.4.2"
1179+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179"
1180+
integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==
1181+
dependencies:
1182+
ajv "^6.12.4"
1183+
debug "^4.1.1"
1184+
espree "^7.3.0"
1185+
globals "^13.9.0"
1186+
ignore "^4.0.6"
1187+
import-fresh "^3.2.1"
1188+
js-yaml "^3.13.1"
1189+
minimatch "^3.0.4"
1190+
strip-json-comments "^3.1.1"
1191+
11771192
"@graphql-tools/batch-execute@^7.1.2":
11781193
version "7.1.2"
11791194
resolved "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.2.tgz"
@@ -1939,6 +1954,11 @@
19391954
prop-types "^15.6.1"
19401955
react-lifecycles-compat "^3.0.4"
19411956

1957+
"@react-icons/all-files@^4.1.0":
1958+
version "4.1.0"
1959+
resolved "https://registry.yarnpkg.com/@react-icons/all-files/-/all-files-4.1.0.tgz#477284873a0821928224b6fc84c62d2534d6650b"
1960+
integrity sha512-hxBI2UOuVaI3O/BhQfhtb4kcGn9ft12RWAFVMUeNjqqhLsHvFtzIkFaptBJpFDANTKoDfdVoHTKZDlwKCACbMQ==
1961+
19421962
"@sideway/address@^4.1.0":
19431963
version "4.1.2"
19441964
resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz"
@@ -2243,7 +2263,7 @@
22432263
resolved "https://registry.npmjs.org/@types/json-patch/-/json-patch-0.0.30.tgz"
22442264
integrity sha512-MhCUjojzDhVLnZnxwPwa+rETFRDQ0ffjxYdrqOP6TBO2O0/Z64PV5tNeYApo4bc4y4frbWOrRwv/eEkXlI13Rw==
22452265

2246-
"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5":
2266+
"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7":
22472267
version "7.0.7"
22482268
resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
22492269
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
@@ -2510,19 +2530,19 @@
25102530
regexpp "^3.0.0"
25112531
tsutils "^3.17.1"
25122532

2513-
"@typescript-eslint/eslint-plugin@^4.9.1":
2514-
version "4.25.0"
2515-
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.25.0.tgz"
2516-
integrity sha512-Qfs3dWkTMKkKwt78xp2O/KZQB8MPS1UQ5D3YW2s6LQWBE1074BE+Rym+b1pXZIX3M3fSvPUDaCvZLKV2ylVYYQ==
2533+
"@typescript-eslint/eslint-plugin@^4.26.1":
2534+
version "4.26.1"
2535+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.26.1.tgz#b9c7313321cb837e2bf8bebe7acc2220659e67d3"
2536+
integrity sha512-aoIusj/8CR+xDWmZxARivZjbMBQTT9dImUtdZ8tVCVRXgBUuuZyM5Of5A9D9arQPxbi/0rlJLcuArclz/rCMJw==
25172537
dependencies:
2518-
"@typescript-eslint/experimental-utils" "4.25.0"
2519-
"@typescript-eslint/scope-manager" "4.25.0"
2520-
debug "^4.1.1"
2538+
"@typescript-eslint/experimental-utils" "4.26.1"
2539+
"@typescript-eslint/scope-manager" "4.26.1"
2540+
debug "^4.3.1"
25212541
functional-red-black-tree "^1.0.1"
2522-
lodash "^4.17.15"
2523-
regexpp "^3.0.0"
2524-
semver "^7.3.2"
2525-
tsutils "^3.17.1"
2542+
lodash "^4.17.21"
2543+
regexpp "^3.1.0"
2544+
semver "^7.3.5"
2545+
tsutils "^3.21.0"
25262546

25272547
"@typescript-eslint/experimental-utils@2.34.0":
25282548
version "2.34.0"
@@ -2534,7 +2554,19 @@
25342554
eslint-scope "^5.0.0"
25352555
eslint-utils "^2.0.0"
25362556

2537-
"@typescript-eslint/experimental-utils@4.25.0", "@typescript-eslint/experimental-utils@^4.0.1":
2557+
"@typescript-eslint/experimental-utils@4.26.1":
2558+
version "4.26.1"
2559+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.26.1.tgz#a35980a2390da9232aa206b27f620eab66e94142"
2560+
integrity sha512-sQHBugRhrXzRCs9PaGg6rowie4i8s/iD/DpTB+EXte8OMDfdCG5TvO73XlO9Wc/zi0uyN4qOmX9hIjQEyhnbmQ==
2561+
dependencies:
2562+
"@types/json-schema" "^7.0.7"
2563+
"@typescript-eslint/scope-manager" "4.26.1"
2564+
"@typescript-eslint/types" "4.26.1"
2565+
"@typescript-eslint/typescript-estree" "4.26.1"
2566+
eslint-scope "^5.1.1"
2567+
eslint-utils "^3.0.0"
2568+
2569+
"@typescript-eslint/experimental-utils@^4.0.1":
25382570
version "4.25.0"
25392571
resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.25.0.tgz"
25402572
integrity sha512-f0doRE76vq7NEEU0tw+ajv6CrmPelw5wLoaghEHkA2dNLFb3T/zJQqGPQ0OYt5XlZaS13MtnN+GTPCuUVg338w==
@@ -2556,15 +2588,15 @@
25562588
"@typescript-eslint/typescript-estree" "2.34.0"
25572589
eslint-visitor-keys "^1.1.0"
25582590

2559-
"@typescript-eslint/parser@^4.9.1":
2560-
version "4.25.0"
2561-
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.25.0.tgz"
2562-
integrity sha512-OZFa1SKyEJpAhDx8FcbWyX+vLwh7OEtzoo2iQaeWwxucyfbi0mT4DijbOSsTgPKzGHr6GrF2V5p/CEpUH/VBxg==
2591+
"@typescript-eslint/parser@^4.26.1":
2592+
version "4.26.1"
2593+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.26.1.tgz#cecfdd5eb7a5c13aabce1c1cfd7fbafb5a0f1e8e"
2594+
integrity sha512-q7F3zSo/nU6YJpPJvQveVlIIzx9/wu75lr6oDbDzoeIRWxpoc/HQ43G4rmMoCc5my/3uSj2VEpg/D83LYZF5HQ==
25632595
dependencies:
2564-
"@typescript-eslint/scope-manager" "4.25.0"
2565-
"@typescript-eslint/types" "4.25.0"
2566-
"@typescript-eslint/typescript-estree" "4.25.0"
2567-
debug "^4.1.1"
2596+
"@typescript-eslint/scope-manager" "4.26.1"
2597+
"@typescript-eslint/types" "4.26.1"
2598+
"@typescript-eslint/typescript-estree" "4.26.1"
2599+
debug "^4.3.1"
25682600

25692601
"@typescript-eslint/scope-manager@4.25.0":
25702602
version "4.25.0"
@@ -2574,11 +2606,24 @@
25742606
"@typescript-eslint/types" "4.25.0"
25752607
"@typescript-eslint/visitor-keys" "4.25.0"
25762608

2609+
"@typescript-eslint/scope-manager@4.26.1":
2610+
version "4.26.1"
2611+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.26.1.tgz#075a74a15ff33ee3a7ed33e5fce16ee86689f662"
2612+
integrity sha512-TW1X2p62FQ8Rlne+WEShyd7ac2LA6o27S9i131W4NwDSfyeVlQWhw8ylldNNS8JG6oJB9Ha9Xyc+IUcqipvheQ==
2613+
dependencies:
2614+
"@typescript-eslint/types" "4.26.1"
2615+
"@typescript-eslint/visitor-keys" "4.26.1"
2616+
25772617
"@typescript-eslint/types@4.25.0":
25782618
version "4.25.0"
25792619
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.25.0.tgz"
25802620
integrity sha512-+CNINNvl00OkW6wEsi32wU5MhHti2J25TJsJJqgQmJu3B3dYDBcmOxcE5w9cgoM13TrdE/5ND2HoEnBohasxRQ==
25812621

2622+
"@typescript-eslint/types@4.26.1":
2623+
version "4.26.1"
2624+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.26.1.tgz#9e7c523f73c34b04a765e4167ca5650436ef1d38"
2625+
integrity sha512-STyMPxR3cS+LaNvS8yK15rb8Y0iL0tFXq0uyl6gY45glyI7w0CsyqyEXl/Fa0JlQy+pVANeK3sbwPneCbWE7yg==
2626+
25822627
"@typescript-eslint/typescript-estree@2.34.0":
25832628
version "2.34.0"
25842629
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"
@@ -2605,6 +2650,19 @@
26052650
semver "^7.3.2"
26062651
tsutils "^3.17.1"
26072652

2653+
"@typescript-eslint/typescript-estree@4.26.1":
2654+
version "4.26.1"
2655+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.26.1.tgz#b2ce2e789233d62283fae2c16baabd4f1dbc9633"
2656+
integrity sha512-l3ZXob+h0NQzz80lBGaykdScYaiEbFqznEs99uwzm8fPHhDjwaBFfQkjUC/slw6Sm7npFL8qrGEAMxcfBsBJUg==
2657+
dependencies:
2658+
"@typescript-eslint/types" "4.26.1"
2659+
"@typescript-eslint/visitor-keys" "4.26.1"
2660+
debug "^4.3.1"
2661+
globby "^11.0.3"
2662+
is-glob "^4.0.1"
2663+
semver "^7.3.5"
2664+
tsutils "^3.21.0"
2665+
26082666
"@typescript-eslint/visitor-keys@4.25.0":
26092667
version "4.25.0"
26102668
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.25.0.tgz"
@@ -2613,6 +2671,14 @@
26132671
"@typescript-eslint/types" "4.25.0"
26142672
eslint-visitor-keys "^2.0.0"
26152673

2674+
"@typescript-eslint/visitor-keys@4.26.1":
2675+
version "4.26.1"
2676+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.26.1.tgz#0d55ea735cb0d8903b198017d6d4f518fdaac546"
2677+
integrity sha512-IGouNSSd+6x/fHtYRyLOM6/C+QxMDzWlDtN41ea+flWuSF9g02iqcIlX8wM53JkfljoIjP0U+yp7SiTS1onEkw==
2678+
dependencies:
2679+
"@typescript-eslint/types" "4.26.1"
2680+
eslint-visitor-keys "^2.0.0"
2681+
26162682
"@webassemblyjs/ast@1.9.0":
26172683
version "1.9.0"
26182684
resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz"
@@ -6367,6 +6433,13 @@ eslint-utils@^2.0.0, eslint-utils@^2.1.0:
63676433
dependencies:
63686434
eslint-visitor-keys "^1.1.0"
63696435

6436+
eslint-utils@^3.0.0:
6437+
version "3.0.0"
6438+
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
6439+
integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
6440+
dependencies:
6441+
eslint-visitor-keys "^2.0.0"
6442+
63706443
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
63716444
version "1.3.0"
63726445
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
@@ -6420,7 +6493,7 @@ eslint@^6.8.0:
64206493
text-table "^0.2.0"
64216494
v8-compile-cache "^2.0.3"
64226495

6423-
eslint@^7.14.0, eslint@^7.15.0:
6496+
eslint@^7.14.0:
64246497
version "7.27.0"
64256498
resolved "https://registry.npmjs.org/eslint/-/eslint-7.27.0.tgz"
64266499
integrity sha512-JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA==
@@ -6465,6 +6538,51 @@ eslint@^7.14.0, eslint@^7.15.0:
64656538
text-table "^0.2.0"
64666539
v8-compile-cache "^2.0.3"
64676540

6541+
eslint@^7.28.0:
6542+
version "7.28.0"
6543+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.28.0.tgz#435aa17a0b82c13bb2be9d51408b617e49c1e820"
6544+
integrity sha512-UMfH0VSjP0G4p3EWirscJEQ/cHqnT/iuH6oNZOB94nBjWbMnhGEPxsZm1eyIW0C/9jLI0Fow4W5DXLjEI7mn1g==
6545+
dependencies:
6546+
"@babel/code-frame" "7.12.11"
6547+
"@eslint/eslintrc" "^0.4.2"
6548+
ajv "^6.10.0"
6549+
chalk "^4.0.0"
6550+
cross-spawn "^7.0.2"
6551+
debug "^4.0.1"
6552+
doctrine "^3.0.0"
6553+
enquirer "^2.3.5"
6554+
escape-string-regexp "^4.0.0"
6555+
eslint-scope "^5.1.1"
6556+
eslint-utils "^2.1.0"
6557+
eslint-visitor-keys "^2.0.0"
6558+
espree "^7.3.1"
6559+
esquery "^1.4.0"
6560+
esutils "^2.0.2"
6561+
fast-deep-equal "^3.1.3"
6562+
file-entry-cache "^6.0.1"
6563+
functional-red-black-tree "^1.0.1"
6564+
glob-parent "^5.1.2"
6565+
globals "^13.6.0"
6566+
ignore "^4.0.6"
6567+
import-fresh "^3.0.0"
6568+
imurmurhash "^0.1.4"
6569+
is-glob "^4.0.0"
6570+
js-yaml "^3.13.1"
6571+
json-stable-stringify-without-jsonify "^1.0.1"
6572+
levn "^0.4.1"
6573+
lodash.merge "^4.6.2"
6574+
minimatch "^3.0.4"
6575+
natural-compare "^1.4.0"
6576+
optionator "^0.9.1"
6577+
progress "^2.0.0"
6578+
regexpp "^3.1.0"
6579+
semver "^7.2.1"
6580+
strip-ansi "^6.0.0"
6581+
strip-json-comments "^3.1.0"
6582+
table "^6.0.9"
6583+
text-table "^0.2.0"
6584+
v8-compile-cache "^2.0.3"
6585+
64686586
espree@^6.1.2:
64696587
version "6.2.1"
64706588
resolved "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz"
@@ -8046,7 +8164,7 @@ glob-parent@^3.1.0:
80468164
is-glob "^3.1.0"
80478165
path-dirname "^1.0.0"
80488166

8049-
glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
8167+
glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.0:
80508168
version "5.1.2"
80518169
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
80528170
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
@@ -8112,14 +8230,14 @@ globals@^12.1.0:
81128230
dependencies:
81138231
type-fest "^0.8.1"
81148232

8115-
globals@^13.6.0:
8233+
globals@^13.6.0, globals@^13.9.0:
81168234
version "13.9.0"
81178235
resolved "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz"
81188236
integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==
81198237
dependencies:
81208238
type-fest "^0.20.2"
81218239

8122-
globby@11.0.3, globby@^11.0.1, globby@^11.0.2:
8240+
globby@11.0.3, globby@^11.0.1, globby@^11.0.2, globby@^11.0.3:
81238241
version "11.0.3"
81248242
resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"
81258243
integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
@@ -13550,11 +13668,6 @@ react-hot-loader@^4.12.21:
1355013668
shallowequal "^1.1.0"
1355113669
source-map "^0.7.3"
1355213670

13553-
react-icons@^4.2.0:
13554-
version "4.2.0"
13555-
resolved "https://registry.npmjs.org/react-icons/-/react-icons-4.2.0.tgz"
13556-
integrity sha512-rmzEDFt+AVXRzD7zDE21gcxyBizD/3NqjbX6cmViAgdqfJ2UiLer8927/QhhrXQV7dEj/1EGuOTPp7JnLYVJKQ==
13557-
1355813671
react-is@16.8.0:
1355913672
version "16.8.0"
1356013673
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.0.tgz#518db476214f3fb0716af9f82dfd420225ae970f"
@@ -15966,7 +16079,7 @@ tslib@~2.1.0:
1596616079
resolved "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz"
1596716080
integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
1596816081

15969-
tsutils@^3.17.1:
16082+
tsutils@^3.17.1, tsutils@^3.21.0:
1597016083
version "3.21.0"
1597116084
resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
1597216085
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==

0 commit comments

Comments
 (0)