Skip to content

Commit 9da9cec

Browse files
committed
feat: enhance typings
1 parent f1dc7f5 commit 9da9cec

File tree

5 files changed

+103
-113
lines changed

5 files changed

+103
-113
lines changed

.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
],
66
"extends": [
77
"eslint:recommended",
8+
"airbnb-base",
89
"plugin:@typescript-eslint/eslint-recommended",
9-
"plugin:@typescript-eslint/recommended",
10-
"airbnb-base"
10+
"plugin:@typescript-eslint/recommended"
1111
],
1212
"settings": {
1313
"import/resolver": {

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
test:
1515
name: Test
1616
runs-on: ubuntu-18.04
17+
strategy:
18+
matrix:
19+
node-version: [12.x, 13.x, 14.x]
1720
steps:
1821
- name: Checkout repo
1922
uses: actions/checkout@main
20-
- name: Setup Node.js version
23+
- name: Setup Node.js version ${{ matrix.node-version }}
2124
uses: actions/setup-node@main
2225
with:
23-
node-version: '12.16.1'
26+
node-version: ${{ matrix.node-version }}
2427
- name: Get yarn cache directory path
2528
id: yarn-cache-dir-path
2629
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -38,6 +41,9 @@ jobs:
3841
- name: Install dependencies
3942
run: |
4043
yarn install --frozen-lockfile
44+
- name: List webpack version
45+
run: |
46+
yarn list --depth=0
4147
- name: Build package
4248
run: |
4349
yarn build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@types/webpack": "^4.41.26",
3737
"@types/webpack-sources": "^1.4.0",
3838
"@typescript-eslint/eslint-plugin": "^4.0.0",
39-
"@typescript-eslint/parser": "^3.6.0",
39+
"@typescript-eslint/parser": "^4.15.2",
4040
"eslint": "^7.4.0",
4141
"eslint-config-airbnb-base": "^14.2.0",
4242
"eslint-plugin-import": "^2.22.0",

src/HtmlInlineScriptPlugin.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import { Compiler } from 'webpack';
2-
import { RawSource } from 'webpack-sources'; // eslint-disable-line import/no-extraneous-dependencies
3-
import htmlWebpackPlugin, { HtmlTagObject } from 'html-webpack-plugin';
1+
import type { Compiler, Plugin } from 'webpack';
2+
import type { RawSource } from 'webpack-sources';
3+
import htmlWebpackPlugin from 'html-webpack-plugin';
4+
import type { HtmlTagObject } from 'html-webpack-plugin';
45
import { PLUGIN_PREFIX } from './constants';
56

6-
class HtmlInlineScriptPlugin {
7+
class HtmlInlineScriptPlugin implements Plugin {
78
tests: RegExp[];
89

910
constructor(tests?: RegExp[]) {

yarn.lock

Lines changed: 87 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,6 @@
214214
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
215215
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
216216

217-
"@types/eslint-visitor-keys@^1.0.0":
218-
version "1.0.0"
219-
resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"
220-
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
221-
222217
"@types/html-minifier@*":
223218
version "4.0.0"
224219
resolved "https://registry.yarnpkg.com/@types/html-minifier/-/html-minifier-4.0.0.tgz#2065cb9944f2d1b241146707c6935aa7b947d279"
@@ -238,9 +233,9 @@
238233
"@types/webpack" "*"
239234

240235
"@types/json-schema@^7.0.3":
241-
version "7.0.5"
242-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd"
243-
integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==
236+
version "7.0.7"
237+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
238+
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
244239

245240
"@types/json5@^0.0.29":
246241
version "0.0.29"
@@ -253,9 +248,9 @@
253248
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
254249

255250
"@types/node@*":
256-
version "14.0.19"
257-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.19.tgz#994d99708822bca643a2364f8aeed04a16e0f5a1"
258-
integrity sha512-yf3BP/NIXF37BjrK5klu//asUWitOEoUP5xE1mhSUjazotwJ/eJDgEmMQNlOeWOVv72j24QQ+3bqXHE++CFGag==
251+
version "14.14.31"
252+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055"
253+
integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==
259254

260255
"@types/normalize-package-data@^2.4.0":
261256
version "2.4.0"
@@ -289,7 +284,7 @@
289284
dependencies:
290285
source-map "^0.6.1"
291286

292-
"@types/webpack-sources@*", "@types/webpack-sources@^1.4.0":
287+
"@types/webpack-sources@*":
293288
version "1.4.0"
294289
resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.0.tgz#e58f1f05f87d39a5c64cf85705bdbdbb94d4d57e"
295290
integrity sha512-c88dKrpSle9BtTqR6ifdaxu1Lvjsl3C5OsfvuUbUwdXymshv1TkufUAXBajCCUM/f/TmnkZC/Esb03MinzSiXQ==
@@ -298,6 +293,15 @@
298293
"@types/source-list-map" "*"
299294
source-map "^0.7.3"
300295

296+
"@types/webpack-sources@^1.4.0":
297+
version "1.4.3"
298+
resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.3.tgz#3041a5f20719fe1e95758dd1c45bcaf0f918e13d"
299+
integrity sha512-2c/hwwRyGoSd7lrVLaekVQzmvVoG3NVPhJLZ84KvT14PTT1VEXGEbZjhtRKV9w/XQX3i1huYeqA29OECxq0NGA==
300+
dependencies:
301+
"@types/node" "*"
302+
"@types/source-list-map" "*"
303+
source-map "^0.7.3"
304+
301305
"@types/webpack@*", "@types/webpack@^4.41.26":
302306
version "4.41.26"
303307
resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.26.tgz#27a30d7d531e16489f9c7607c747be6bc1a459ef"
@@ -311,111 +315,73 @@
311315
source-map "^0.6.0"
312316

313317
"@typescript-eslint/eslint-plugin@^4.0.0":
314-
version "4.0.0"
315-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.0.0.tgz#99349a501447fed91de18346705c0c65cf603bee"
316-
integrity sha512-5e6q1TR7gS2P+8W2xndCu7gBh3BzmYEo70OyIdsmCmknHha/yNbz2vdevl+tP1uoaMOcrzg4gyrAijuV3DDBHA==
318+
version "4.15.2"
319+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz#981b26b4076c62a5a55873fbef3fe98f83360c61"
320+
integrity sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q==
317321
dependencies:
318-
"@typescript-eslint/experimental-utils" "4.0.0"
319-
"@typescript-eslint/scope-manager" "4.0.0"
322+
"@typescript-eslint/experimental-utils" "4.15.2"
323+
"@typescript-eslint/scope-manager" "4.15.2"
320324
debug "^4.1.1"
321325
functional-red-black-tree "^1.0.1"
326+
lodash "^4.17.15"
322327
regexpp "^3.0.0"
323328
semver "^7.3.2"
324329
tsutils "^3.17.1"
325330

326-
"@typescript-eslint/[email protected]":
327-
version "3.10.1"
328-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686"
329-
integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
330-
dependencies:
331-
"@types/json-schema" "^7.0.3"
332-
"@typescript-eslint/types" "3.10.1"
333-
"@typescript-eslint/typescript-estree" "3.10.1"
334-
eslint-scope "^5.0.0"
335-
eslint-utils "^2.0.0"
336-
337-
"@typescript-eslint/[email protected]":
338-
version "4.0.0"
339-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.0.0.tgz#fbec21a3b5ab59127edb6ce2e139ed378cc50eb5"
340-
integrity sha512-hbX6zR+a/vcpFVNJYN/Nbd7gmaMosDTxHEKcvmhWeWcq/0UDifrqmCfkkodbAKL46Fn4ekSBMTyq2zlNDzcQxw==
331+
"@typescript-eslint/[email protected]":
332+
version "4.15.2"
333+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz#5efd12355bd5b535e1831282e6cf465b9a71cf36"
334+
integrity sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ==
341335
dependencies:
342336
"@types/json-schema" "^7.0.3"
343-
"@typescript-eslint/scope-manager" "4.0.0"
344-
"@typescript-eslint/types" "4.0.0"
345-
"@typescript-eslint/typescript-estree" "4.0.0"
337+
"@typescript-eslint/scope-manager" "4.15.2"
338+
"@typescript-eslint/types" "4.15.2"
339+
"@typescript-eslint/typescript-estree" "4.15.2"
346340
eslint-scope "^5.0.0"
347341
eslint-utils "^2.0.0"
348342

349-
"@typescript-eslint/parser@^3.6.0":
350-
version "3.10.1"
351-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.10.1.tgz#1883858e83e8b442627e1ac6f408925211155467"
352-
integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==
343+
"@typescript-eslint/parser@^4.15.2":
344+
version "4.15.2"
345+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.15.2.tgz#c804474321ef76a3955aec03664808f0d6e7872e"
346+
integrity sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q==
353347
dependencies:
354-
"@types/eslint-visitor-keys" "^1.0.0"
355-
"@typescript-eslint/experimental-utils" "3.10.1"
356-
"@typescript-eslint/types" "3.10.1"
357-
"@typescript-eslint/typescript-estree" "3.10.1"
358-
eslint-visitor-keys "^1.1.0"
348+
"@typescript-eslint/scope-manager" "4.15.2"
349+
"@typescript-eslint/types" "4.15.2"
350+
"@typescript-eslint/typescript-estree" "4.15.2"
351+
debug "^4.1.1"
359352

360-
"@typescript-eslint/scope-manager@4.0.0":
361-
version "4.0.0"
362-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.0.0.tgz#8c9e3b3b8cdf5a1fbe671d9fad73ff67bc027ea8"
363-
integrity sha512-9gcWUPoWo7gk/+ZQPg7L1ySRmR5HLIy3Vu6/LfhQbuzIkGm6v2CGIjpVRISoDLFRovNRDImd4aP/sa8O4yIEBg==
353+
"@typescript-eslint/scope-manager@4.15.2":
354+
version "4.15.2"
355+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz#5725bda656995960ae1d004bfd1cd70320f37f4f"
356+
integrity sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ==
364357
dependencies:
365-
"@typescript-eslint/types" "4.0.0"
366-
"@typescript-eslint/visitor-keys" "4.0.0"
358+
"@typescript-eslint/types" "4.15.2"
359+
"@typescript-eslint/visitor-keys" "4.15.2"
367360

368-
"@typescript-eslint/[email protected]":
369-
version "3.10.1"
370-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
371-
integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
372-
373-
"@typescript-eslint/[email protected]":
374-
version "4.0.0"
375-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.0.0.tgz#ec1f9fc06b8558a1d5afa6e337182d08beece7f5"
376-
integrity sha512-bK+c2VLzznX2fUWLK6pFDv3cXGTp7nHIuBMq1B9klA+QCsqLHOOqe5TQReAQDl7DN2RfH+neweo0oC5hYlG7Rg==
361+
"@typescript-eslint/[email protected]":
362+
version "4.15.2"
363+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.15.2.tgz#04acf3a2dc8001a88985291744241e732ef22c60"
364+
integrity sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ==
377365

378-
"@typescript-eslint/typescript-estree@3.10.1":
379-
version "3.10.1"
380-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853"
381-
integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
366+
"@typescript-eslint/typescript-estree@4.15.2":
367+
version "4.15.2"
368+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz#c2f7a1e94f3428d229d5ecff3ead6581ee9b62fa"
369+
integrity sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw==
382370
dependencies:
383-
"@typescript-eslint/types" "3.10.1"
384-
"@typescript-eslint/visitor-keys" "3.10.1"
385-
debug "^4.1.1"
386-
glob "^7.1.6"
387-
is-glob "^4.0.1"
388-
lodash "^4.17.15"
389-
semver "^7.3.2"
390-
tsutils "^3.17.1"
391-
392-
"@typescript-eslint/[email protected]":
393-
version "4.0.0"
394-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.0.0.tgz#2244c63de2f2190bc5718eb0fb3fd2c437d42097"
395-
integrity sha512-ewFMPi2pMLDNIXGMPdf8r7El2oPSZw9PEYB0j+WcpKd7AX2ARmajGa7RUHTukllWX2bj4vWX6JLE1Oih2BMokA==
396-
dependencies:
397-
"@typescript-eslint/types" "4.0.0"
398-
"@typescript-eslint/visitor-keys" "4.0.0"
371+
"@typescript-eslint/types" "4.15.2"
372+
"@typescript-eslint/visitor-keys" "4.15.2"
399373
debug "^4.1.1"
400374
globby "^11.0.1"
401375
is-glob "^4.0.1"
402-
lodash "^4.17.15"
403376
semver "^7.3.2"
404377
tsutils "^3.17.1"
405378

406-
"@typescript-eslint/visitor-keys@3.10.1":
407-
version "3.10.1"
408-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931"
409-
integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
379+
"@typescript-eslint/visitor-keys@4.15.2":
380+
version "4.15.2"
381+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz#3d1c7979ce75bf6acf9691109bd0d6b5706192b9"
382+
integrity sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg==
410383
dependencies:
411-
eslint-visitor-keys "^1.1.0"
412-
413-
"@typescript-eslint/[email protected]":
414-
version "4.0.0"
415-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.0.0.tgz#e2bbb69d98076d6a3f06abcb2048225a74362c33"
416-
integrity sha512-sTouJbv6rjVJeTE4lpSBVYXq/u5K3gbB6LKt7ccFEZPTZB/VeQ0ssUz9q5Hx++sCqBbdF8PzrrgvEnicXAR6NQ==
417-
dependencies:
418-
"@typescript-eslint/types" "4.0.0"
384+
"@typescript-eslint/types" "4.15.2"
419385
eslint-visitor-keys "^2.0.0"
420386

421387
JSONStream@^1.0.4:
@@ -1168,9 +1134,9 @@ fast-levenshtein@^2.0.6:
11681134
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
11691135

11701136
fastq@^1.6.0:
1171-
version "1.10.0"
1172-
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb"
1173-
integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA==
1137+
version "1.11.0"
1138+
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
1139+
integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
11741140
dependencies:
11751141
reusify "^1.0.4"
11761142

@@ -1322,7 +1288,7 @@ glob-parent@^5.0.0, glob-parent@^5.1.0:
13221288
dependencies:
13231289
is-glob "^4.0.1"
13241290

1325-
glob@^7.1.3, glob@^7.1.6:
1291+
glob@^7.1.3:
13261292
version "7.1.6"
13271293
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
13281294
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -1749,7 +1715,12 @@ lodash.templatesettings@^4.0.0:
17491715
dependencies:
17501716
lodash._reinterpolate "^3.0.0"
17511717

1752-
lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20:
1718+
lodash@^4.17.15:
1719+
version "4.17.21"
1720+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1721+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1722+
1723+
lodash@^4.17.19, lodash@^4.17.20:
17531724
version "4.17.20"
17541725
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
17551726
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
@@ -2189,6 +2160,11 @@ q@^1.5.1:
21892160
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
21902161
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
21912162

2163+
queue-microtask@^1.2.2:
2164+
version "1.2.2"
2165+
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.2.tgz#abf64491e6ecf0f38a6502403d4cda04f372dfd3"
2166+
integrity sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==
2167+
21922168
quick-lru@^4.0.1:
21932169
version "4.0.1"
21942170
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
@@ -2330,9 +2306,11 @@ run-node@^1.0.0:
23302306
integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==
23312307

23322308
run-parallel@^1.1.9:
2333-
version "1.1.10"
2334-
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef"
2335-
integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==
2309+
version "1.2.0"
2310+
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
2311+
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
2312+
dependencies:
2313+
queue-microtask "^1.2.2"
23362314

23372315
rxjs@^6.6.3:
23382316
version "6.6.3"
@@ -2637,15 +2615,20 @@ tsconfig-paths@^3.9.0:
26372615
minimist "^1.2.0"
26382616
strip-bom "^3.0.0"
26392617

2640-
tslib@^1.8.1, tslib@^1.9.0:
2618+
tslib@^1.8.1:
2619+
version "1.14.1"
2620+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2621+
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2622+
2623+
tslib@^1.9.0:
26412624
version "1.13.0"
26422625
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
26432626
integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
26442627

26452628
tsutils@^3.17.1:
2646-
version "3.17.1"
2647-
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
2648-
integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
2629+
version "3.20.0"
2630+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.20.0.tgz#ea03ea45462e146b53d70ce0893de453ff24f698"
2631+
integrity sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==
26492632
dependencies:
26502633
tslib "^1.8.1"
26512634

0 commit comments

Comments
 (0)