Skip to content

Commit 5ccee88

Browse files
committedFeb 14, 2020
Prepare 3.4.0 release
1 parent e579de1 commit 5ccee88

File tree

2 files changed

+195
-120
lines changed

2 files changed

+195
-120
lines changed
 

‎CHANGELOG.md

+85
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
1+
## 3.4.0 (2020-02-14)
2+
3+
v3.4.0 is a minor release that adds new features, including support for SSL and setting `PUBLIC_URL` in development. It also includes a fix for Hot Module Reloading with CSS Modules as well as other bug fixes.
4+
5+
#### :bug: Bug Fix
6+
7+
- `react-scripts`
8+
- [#8378](https://github.com/facebook/create-react-app/pull/8378) Downgrade style-loader to v0.23.1 due to CSS modules hot reload not working with v1.0.0 and above ([@chybisov](https://github.com/chybisov))
9+
- `create-react-app`, `react-dev-utils`, `react-error-overlay`
10+
- [#8439](https://github.com/facebook/create-react-app/pull/8439) Downgrade chalk for ie 11 support ([@ianschmitz](https://github.com/ianschmitz))
11+
- `react-dev-utils`
12+
- [#8292](https://github.com/facebook/create-react-app/pull/8292) Fixes unchecked access to 'deploy' script on build ([@renato-bohler](https://github.com/renato-bohler))
13+
- `cra-template-typescript`, `cra-template`
14+
- [#8272](https://github.com/facebook/create-react-app/pull/8272) Handle service worker error in Firefox ([@rosinghal](https://github.com/rosinghal))
15+
- `cra-template-typescript`
16+
- [#8403](https://github.com/facebook/create-react-app/pull/8403) Fix robots.txt for TS ([@Kamahl19](https://github.com/Kamahl19))
17+
18+
#### :nail_care: Enhancement
19+
20+
- `react-dev-utils`, `react-scripts`
21+
- [#8442](https://github.com/facebook/create-react-app/pull/8442) fix(react-scripts): do not redirect served path if request may proxy ([@iamandrewluca](https://github.com/iamandrewluca))
22+
- [#7259](https://github.com/facebook/create-react-app/pull/7259) feat(react-scripts): allow PUBLIC_URL in develoment mode ([@iamandrewluca](https://github.com/iamandrewluca))
23+
- [#7750](https://github.com/facebook/create-react-app/pull/7750) Enable custom sockjs pathname for hot reloading server. ([@heygrady](https://github.com/heygrady))
24+
- `cra-template-typescript`
25+
- [#8412](https://github.com/facebook/create-react-app/pull/8412) Change arrow functions to function declarations ([@lewislbr](https://github.com/lewislbr))
26+
- `cra-template-typescript`, `cra-template`
27+
- [#8272](https://github.com/facebook/create-react-app/pull/8272) Handle service worker error in Firefox ([@rosinghal](https://github.com/rosinghal))
28+
- `react-scripts`
29+
- [#5845](https://github.com/facebook/create-react-app/pull/5845) Add option to provide custom ssl certificates during development ([@alexbrazier](https://github.com/alexbrazier))
30+
31+
#### :memo: Documentation
32+
33+
- `cra-template-typescript`, `cra-template`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
34+
- [#8475](https://github.com/facebook/create-react-app/pull/8475) Correct webpack name casing ([@lewislbr](https://github.com/lewislbr))
35+
- Other
36+
- [#8437](https://github.com/facebook/create-react-app/pull/8437) Fix navbar line break in header ([@esvyridov](https://github.com/esvyridov))
37+
- [#8299](https://github.com/facebook/create-react-app/pull/8299) Update public folder usage docs to clarify globals ([@keevan](https://github.com/keevan))
38+
- [#8390](https://github.com/facebook/create-react-app/pull/8390) setupTestFrameworkScriptFile is deprecated ([@JimmyLv](https://github.com/JimmyLv))
39+
40+
#### :hammer: Underlying Tools
41+
42+
- `react-dev-utils`
43+
- [#8459](https://github.com/facebook/create-react-app/pull/8459) update open to v7.0.2 ([@vince1995](https://github.com/vince1995))
44+
- [#7948](https://github.com/facebook/create-react-app/pull/7948) Support JetBrains Rider IDE as an editor ([@djpowell](https://github.com/djpowell))
45+
- [#8367](https://github.com/facebook/create-react-app/pull/8367) Wider Chromium support for openBrowser ([@handeyeco](https://github.com/handeyeco))
46+
- `react-scripts`
47+
- [#8282](https://github.com/facebook/create-react-app/pull/8282) Run git init before template dependencies are installed ([@lukaszfiszer](https://github.com/lukaszfiszer))
48+
- Other
49+
- [#8402](https://github.com/facebook/create-react-app/pull/8402) fix(test): force install npm in e2e-behaviour ([@iamandrewluca](https://github.com/iamandrewluca))
50+
51+
#### Committers: 18
52+
53+
- Alex Brazier ([@alexbrazier](https://github.com/alexbrazier))
54+
- Andrew Luca ([@iamandrewluca](https://github.com/iamandrewluca))
55+
- Cassidy Williams ([@cassidoo](https://github.com/cassidoo))
56+
- Christopher Button ([@devgeist](https://github.com/devgeist))
57+
- David Powell ([@djpowell](https://github.com/djpowell))
58+
- Eugene Chybisov ([@chybisov](https://github.com/chybisov))
59+
- Eugene Sviridov ([@esvyridov](https://github.com/esvyridov))
60+
- Grady Kuhnline ([@heygrady](https://github.com/heygrady))
61+
- Ian Schmitz ([@ianschmitz](https://github.com/ianschmitz))
62+
- Kevin Pham ([@keevan](https://github.com/keevan))
63+
- Lewis Llobera ([@lewislbr](https://github.com/lewislbr))
64+
- Martin Litvaj ([@Kamahl19](https://github.com/Kamahl19))
65+
- Matthew Curtis ([@handeyeco](https://github.com/handeyeco))
66+
- Renato Böhler ([@renato-bohler](https://github.com/renato-bohler))
67+
- Rohit Singhal ([@rosinghal](https://github.com/rosinghal))
68+
- Vincent Semrau ([@vince1995](https://github.com/vince1995))
69+
- Łukasz Fiszer ([@lukaszfiszer](https://github.com/lukaszfiszer))
70+
- 吕立青 ([@JimmyLv](https://github.com/JimmyLv))
71+
72+
### Migrating from 3.3.1 to 3.4.0
73+
74+
Inside any created project that has not been ejected, run:
75+
76+
```sh
77+
npm install --save --save-exact react-scripts@3.4.0
78+
```
79+
80+
or
81+
82+
```sh
83+
yarn add --exact react-scripts@3.4.0
84+
```
85+
186
## 3.3.1 (2020-01-31)
287

388
v3.3.1 is a maintenance release that includes minor bug fixes and documentation updates.

‎packages/create-react-app/yarn.lock.cached

+110-120
Original file line numberDiff line numberDiff line change
@@ -841,15 +841,7 @@
841841
"@babel/helper-plugin-utils" "^7.8.3"
842842
"@babel/plugin-transform-typescript" "^7.8.3"
843843

844-
"@babel/runtime-corejs3@^7.7.4":
845-
version "7.8.4"
846-
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.8.4.tgz#ccc4e042e2fae419c67fa709567e5d2179ed3940"
847-
integrity sha512-+wpLqy5+fbQhvbllvlJEVRIpYj+COUWnnsm+I4jZlA8Lo7/MJmBhGTCHyk1/RWfOqBRJ2MbadddG6QltTKTlrg==
848-
dependencies:
849-
core-js-pure "^3.0.0"
850-
regenerator-runtime "^0.13.2"
851-
852-
"@babel/runtime@7.8.4", "@babel/runtime@^7.0.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.4":
844+
"@babel/runtime@7.8.4", "@babel/runtime@^7.0.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2":
853845
version "7.8.4"
854846
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz#d79f5a2040f7caa24d53e563aad49cbc05581308"
855847
integrity sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ==
@@ -890,9 +882,9 @@
890882
to-fast-properties "^2.0.0"
891883

892884
"@cnakazawa/watch@^1.0.3":
893-
version "1.0.3"
894-
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
895-
integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
885+
version "1.0.4"
886+
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
887+
integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
896888
dependencies:
897889
exec-sh "^0.3.2"
898890
minimist "^1.2.0"
@@ -918,9 +910,9 @@
918910
integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
919911

920912
"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0":
921-
version "8.5.0"
922-
resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.0.tgz#2f9ce301c8898e1c3248b0a8564696b24d1a9a5a"
923-
integrity sha512-7XYT10CZfPsH7j9F1Jmg1+d0ezOux2oM2GfArAzLwWe4mE2Dr3hVjsAL6+TFY49RRJlCdJDMw3nJsLFroTc8Kw==
913+
version "8.5.1"
914+
resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06"
915+
integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==
924916

925917
"@hapi/joi@^15.0.0":
926918
version "15.1.1"
@@ -1204,9 +1196,9 @@
12041196
loader-utils "^1.2.3"
12051197

12061198
"@types/babel__core@^7.1.0":
1207-
version "7.1.3"
1208-
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
1209-
integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==
1199+
version "7.1.4"
1200+
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.4.tgz#5c5569cc40e5f2737dfc00692f5444e871e4a234"
1201+
integrity sha512-c/5MuRz5HM4aizqL5ViYfW4iEnmfPcfbH4Xa6GgLT21dMc1NGeNnuS6egHheOmP+kCJ9CAzC4pv4SDCWTnRkbg==
12101202
dependencies:
12111203
"@babel/parser" "^7.1.0"
12121204
"@babel/types" "^7.0.0"
@@ -1291,9 +1283,9 @@
12911283
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
12921284

12931285
"@types/node@*":
1294-
version "13.7.0"
1295-
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.7.0.tgz#b417deda18cf8400f278733499ad5547ed1abec4"
1296-
integrity sha512-GnZbirvmqZUzMgkFn70c74OQpTTUcCzlhQliTzYjQMqg+hVKcDnxdL19Ne3UdYzdMA/+W3eb646FWn/ZaT1NfQ==
1286+
version "13.7.1"
1287+
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.7.1.tgz#238eb34a66431b71d2aaddeaa7db166f25971a0d"
1288+
integrity sha512-Zq8gcQGmn4txQEJeiXo/KiLpon8TzAl0kmKH4zdWctPj05nWwp1ClMdAVEloqrQKfaC48PNLdgN/aVaLqUrluA==
12971289

12981290
"@types/parse-json@^4.0.0":
12991291
version "4.0.0"
@@ -1323,39 +1315,39 @@
13231315
"@types/yargs-parser" "*"
13241316

13251317
"@typescript-eslint/eslint-plugin@^2.10.0":
1326-
version "2.19.0"
1327-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.19.0.tgz#bf743448a4633e4b52bee0c40148ba072ab3adbd"
1328-
integrity sha512-u7IcQ9qwsB6U806LupZmINRnQjC+RJyv36sV/ugaFWMHTbFm/hlLTRx3gGYJgHisxcGSTnf+I/fPDieRMhPSQQ==
1318+
version "2.19.2"
1319+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.19.2.tgz#e279aaae5d5c1f2547b4cff99204e1250bc7a058"
1320+
integrity sha512-HX2qOq2GOV04HNrmKnTpSIpHjfl7iwdXe3u/Nvt+/cpmdvzYvY0NHSiTkYN257jHnq4OM/yo+OsFgati+7LqJA==
13291321
dependencies:
1330-
"@typescript-eslint/experimental-utils" "2.19.0"
1322+
"@typescript-eslint/experimental-utils" "2.19.2"
13311323
eslint-utils "^1.4.3"
13321324
functional-red-black-tree "^1.0.1"
13331325
regexpp "^3.0.0"
13341326
tsutils "^3.17.1"
13351327

1336-
"@typescript-eslint/experimental-utils@2.19.0":
1337-
version "2.19.0"
1338-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.19.0.tgz#d5ca732f22c009e515ba09fcceb5f2127d841568"
1339-
integrity sha512-zwpg6zEOPbhB3+GaQfufzlMUOO6GXCNZq6skk+b2ZkZAIoBhVoanWK255BS1g5x9bMwHpLhX0Rpn5Fc3NdCZdg==
1328+
"@typescript-eslint/experimental-utils@2.19.2":
1329+
version "2.19.2"
1330+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.19.2.tgz#4611d44cf0f0cb460c26aa7676fc0a787281e233"
1331+
integrity sha512-B88QuwT1wMJR750YvTJBNjMZwmiPpbmKYLm1yI7PCc3x0NariqPwqaPsoJRwU9DmUi0cd9dkhz1IqEnwfD+P1A==
13401332
dependencies:
13411333
"@types/json-schema" "^7.0.3"
1342-
"@typescript-eslint/typescript-estree" "2.19.0"
1334+
"@typescript-eslint/typescript-estree" "2.19.2"
13431335
eslint-scope "^5.0.0"
13441336

13451337
"@typescript-eslint/parser@^2.10.0":
1346-
version "2.19.0"
1347-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.19.0.tgz#912160d9425395d09857dcd5382352bc98be11ae"
1348-
integrity sha512-s0jZoxAWjHnuidbbN7aA+BFVXn4TCcxEVGPV8lWMxZglSs3NRnFFAlL+aIENNmzB2/1jUJuySi6GiM6uACPmpg==
1338+
version "2.19.2"
1339+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.19.2.tgz#21f42c0694846367e7d6a907feb08ab2f89c0879"
1340+
integrity sha512-8uwnYGKqX9wWHGPGdLB9sk9+12sjcdqEEYKGgbS8A0IvYX59h01o8os5qXUHMq2na8vpDRaV0suTLM7S8wraTA==
13491341
dependencies:
13501342
"@types/eslint-visitor-keys" "^1.0.0"
1351-
"@typescript-eslint/experimental-utils" "2.19.0"
1352-
"@typescript-eslint/typescript-estree" "2.19.0"
1343+
"@typescript-eslint/experimental-utils" "2.19.2"
1344+
"@typescript-eslint/typescript-estree" "2.19.2"
13531345
eslint-visitor-keys "^1.1.0"
13541346

1355-
"@typescript-eslint/typescript-estree@2.19.0":
1356-
version "2.19.0"
1357-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.19.0.tgz#6bd7310b9827e04756fe712909f26956aac4b196"
1358-
integrity sha512-n6/Xa37k0jQdwpUszffi19AlNbVCR0sdvCs3DmSKMD7wBttKY31lhD2fug5kMD91B2qW4mQldaTEc1PEzvGu8w==
1347+
"@typescript-eslint/typescript-estree@2.19.2":
1348+
version "2.19.2"
1349+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.19.2.tgz#67485b00172f400474d243c6c0be27581a579350"
1350+
integrity sha512-Xu/qa0MDk6upQWqE4Qy2X16Xg8Vi32tQS2PR0AvnT/ZYS4YGDvtn2MStOh5y8Zy2mg4NuL06KUHlvCh95j9C6Q==
13591351
dependencies:
13601352
debug "^4.1.1"
13611353
eslint-visitor-keys "^1.1.0"
@@ -1908,12 +1900,9 @@ aws4@^1.8.0:
19081900
integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
19091901

19101902
axobject-query@^2.0.2:
1911-
version "2.1.1"
1912-
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.1.tgz#2a3b1271ec722d48a4cd4b3fcc20c853326a49a7"
1913-
integrity sha512-lF98xa/yvy6j3fBHAgQXIYl+J4eZadOSqsPojemUqClzNbBV38wWGpUbQbVEyf4eUF5yF7eHmGgGA2JiHyjeqw==
1914-
dependencies:
1915-
"@babel/runtime" "^7.7.4"
1916-
"@babel/runtime-corejs3" "^7.7.4"
1903+
version "2.1.2"
1904+
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799"
1905+
integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ==
19171906

19181907
babel-code-frame@^6.22.0:
19191908
version "6.26.0"
@@ -2269,7 +2258,7 @@ browserify-zlib@^0.2.0:
22692258
dependencies:
22702259
pako "~1.0.5"
22712260

2272-
browserslist@4.8.6, browserslist@^4.0.0, browserslist@^4.6.2, browserslist@^4.6.4, browserslist@^4.8.3, browserslist@^4.8.5:
2261+
browserslist@4.8.6:
22732262
version "4.8.6"
22742263
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.6.tgz#96406f3f5f0755d272e27a66f4163ca821590a7e"
22752264
integrity sha512-ZHao85gf0eZ0ESxLfCp73GG9O/VTytYDIkIiZDlURppLTI9wErSM/5yAKEq6rcUdxBLjMELmrYUJGg5sxGKMHg==
@@ -2278,6 +2267,15 @@ browserslist@4.8.6, browserslist@^4.0.0, browserslist@^4.6.2, browserslist@^4.6.
22782267
electron-to-chromium "^1.3.341"
22792268
node-releases "^1.1.47"
22802269

2270+
browserslist@^4.0.0, browserslist@^4.6.2, browserslist@^4.6.4, browserslist@^4.8.3, browserslist@^4.8.5:
2271+
version "4.8.7"
2272+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.7.tgz#ec8301ff415e6a42c949d0e66b405eb539c532d0"
2273+
integrity sha512-gFOnZNYBHrEyUML0xr5NJ6edFaaKbTFX9S9kQHlYfCP0Rit/boRIz4G+Avq6/4haEKJXdGGUnoolx+5MWW2BoA==
2274+
dependencies:
2275+
caniuse-lite "^1.0.30001027"
2276+
electron-to-chromium "^1.3.349"
2277+
node-releases "^1.1.49"
2278+
22812279
bser@2.1.1:
22822280
version "2.1.1"
22832281
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
@@ -2441,10 +2439,10 @@ caniuse-api@^3.0.0:
24412439
lodash.memoize "^4.1.2"
24422440
lodash.uniq "^4.5.0"
24432441

2444-
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001023:
2445-
version "1.0.30001025"
2446-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001025.tgz#30336a8aca7f98618eb3cf38e35184e13d4e5fe6"
2447-
integrity sha512-SKyFdHYfXUZf5V85+PJgLYyit27q4wgvZuf8QTOk1osbypcROihMBlx9GRar2/pIcKH2r4OehdlBr9x6PXetAQ==
2442+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001023, caniuse-lite@^1.0.30001027:
2443+
version "1.0.30001027"
2444+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001027.tgz#283e2ef17d94889cc216a22c6f85303d78ca852d"
2445+
integrity sha512-7xvKeErvXZFtUItTHgNtLgS9RJpVnwBlWX8jSo/BO8VsF6deszemZSkJJJA1KOKrXuzZH4WALpAJdq5EyfgMLg==
24482446

24492447
capture-exit@^2.0.0:
24502448
version "2.0.0"
@@ -2531,9 +2529,9 @@ chokidar@^3.3.0:
25312529
fsevents "~2.1.2"
25322530

25332531
chownr@^1.1.1, chownr@^1.1.2:
2534-
version "1.1.3"
2535-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142"
2536-
integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
2532+
version "1.1.4"
2533+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
2534+
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
25372535

25382536
chrome-trace-event@^1.0.2:
25392537
version "1.0.2"
@@ -2857,11 +2855,6 @@ core-js-compat@^3.6.2:
28572855
browserslist "^4.8.3"
28582856
semver "7.0.0"
28592857

2860-
core-js-pure@^3.0.0:
2861-
version "3.6.4"
2862-
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a"
2863-
integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==
2864-
28652858
core-js@^2.4.0:
28662859
version "2.6.11"
28672860
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
@@ -3491,12 +3484,12 @@ domutils@^1.5.1, domutils@^1.7.0:
34913484
dom-serializer "0"
34923485
domelementtype "1"
34933486

3494-
dot-prop@^4.1.1:
3495-
version "4.2.0"
3496-
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
3497-
integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
3487+
dot-prop@^5.2.0:
3488+
version "5.2.0"
3489+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
3490+
integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
34983491
dependencies:
3499-
is-obj "^1.0.0"
3492+
is-obj "^2.0.0"
35003493

35013494
dotenv-expand@5.1.0:
35023495
version "5.1.0"
@@ -3536,10 +3529,10 @@ ee-first@1.1.1:
35363529
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
35373530
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
35383531

3539-
electron-to-chromium@^1.3.341:
3540-
version "1.3.345"
3541-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.345.tgz#2569d0d54a64ef0f32a4b7e8c80afa5fe57c5d98"
3542-
integrity sha512-f8nx53+Z9Y+SPWGg3YdHrbYYfIJAtbUjpFfW4X1RwTZ94iUG7geg9tV8HqzAXX7XTNgyWgAFvce4yce8ZKxKmg==
3532+
electron-to-chromium@^1.3.341, electron-to-chromium@^1.3.349:
3533+
version "1.3.349"
3534+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.349.tgz#663f26a69d348a462df47b4d7ab162a2f29bbcb7"
3535+
integrity sha512-uEb2zs6EJ6OZIqaMsCSliYVgzE/f7/s1fLWqtvRtHg/v5KBF2xds974fUnyatfxIDgkqzQVwFtam5KExqywx0Q==
35433536

35443537
elliptic@^6.0.0:
35453538
version "6.5.2"
@@ -3873,9 +3866,9 @@ esprima@^4.0.0, esprima@^4.0.1:
38733866
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
38743867

38753868
esquery@^1.0.1:
3876-
version "1.0.1"
3877-
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
3878-
integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==
3869+
version "1.1.0"
3870+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.1.0.tgz#c5c0b66f383e7656404f86b31334d72524eddb48"
3871+
integrity sha512-MxYW9xKmROWF672KqjO75sszsA8Mxhw06YFeS5VHlB98KDHbOSurm3ArsjO60Eaf3QmGMCP1yn+0JQkNLo/97Q==
38793872
dependencies:
38803873
estraverse "^4.0.0"
38813874

@@ -4590,7 +4583,7 @@ har-schema@^2.0.0:
45904583
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
45914584
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
45924585

4593-
har-validator@~5.1.0:
4586+
har-validator@~5.1.3:
45944587
version "5.1.3"
45954588
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
45964589
integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
@@ -4751,9 +4744,9 @@ html-escaper@^2.0.0:
47514744
integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==
47524745

47534746
html-minifier-terser@^5.0.1:
4754-
version "5.0.2"
4755-
resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.2.tgz#0e67a0b062ae1dd0719fc73199479298f807ae16"
4756-
integrity sha512-VAaitmbBuHaPKv9bj47XKypRhgDxT/cDLvsPiiF7w+omrN3K0eQhpigV9Z1ilrmHa9e0rOYcD6R/+LCDADGcnQ==
4747+
version "5.0.3"
4748+
resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.3.tgz#b33549b57be7f0357be0d0b892995aaed1ed90f8"
4749+
integrity sha512-It4No3H1V3Dhd/O0MePFdo0oX/M6u6YZTMw4My/010mT6vxdbqge7+0RoxGAmeSbKok6gjYZoP0p4rpZ2+J2yw==
47574750
dependencies:
47584751
camel-case "^3.0.0"
47594752
clean-css "^4.2.1"
@@ -5249,11 +5242,16 @@ is-number@^7.0.0:
52495242
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
52505243
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
52515244

5252-
is-obj@^1.0.0, is-obj@^1.0.1:
5245+
is-obj@^1.0.1:
52535246
version "1.0.1"
52545247
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
52555248
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
52565249

5250+
is-obj@^2.0.0:
5251+
version "2.0.0"
5252+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
5253+
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
5254+
52575255
is-path-cwd@^2.0.0:
52585256
version "2.2.0"
52595257
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
@@ -6190,9 +6188,9 @@ lodash.uniq@^4.5.0:
61906188
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
61916189

61926190
loglevel@^1.6.6:
6193-
version "1.6.6"
6194-
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
6195-
integrity sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==
6191+
version "1.6.7"
6192+
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.7.tgz#b3e034233188c68b889f5b862415306f565e2c56"
6193+
integrity sha512-cY2eLFrQSAfVPhCgH1s7JI73tMbg9YC3v3+ZHVW67sBS7UxWzNEk/ZBbSfLykBWHp33dqqtOv82gjhKEi81T/A==
61966194

61976195
loose-envify@^1.0.0, loose-envify@^1.4.0:
61986196
version "1.4.0"
@@ -6222,9 +6220,9 @@ make-dir@^2.0.0, make-dir@^2.1.0:
62226220
semver "^5.6.0"
62236221

62246222
make-dir@^3.0.0:
6225-
version "3.0.0"
6226-
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801"
6227-
integrity sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==
6223+
version "3.0.2"
6224+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392"
6225+
integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==
62286226
dependencies:
62296227
semver "^6.0.0"
62306228

@@ -6689,10 +6687,10 @@ node-pre-gyp@*:
66896687
semver "^5.3.0"
66906688
tar "^4.4.2"
66916689

6692-
node-releases@^1.1.47:
6693-
version "1.1.48"
6694-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.48.tgz#7f647f0c453a0495bcd64cbd4778c26035c2f03a"
6695-
integrity sha512-Hr8BbmUl1ujAST0K0snItzEA5zkJTQup8VNTKNfT6Zw8vTJkIiagUPNfxHmgDOyfFYNfKAul40sD0UEYTvwebw==
6690+
node-releases@^1.1.47, node-releases@^1.1.49:
6691+
version "1.1.49"
6692+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.49.tgz#67ba5a3fac2319262675ef864ed56798bb33b93e"
6693+
integrity sha512-xH8t0LS0disN0mtRCh+eByxFPie+msJUBL/lJDBuap53QGiYPa9joh83K4pCZgWJ+2L4b9h88vCVdXQ60NO2bg==
66966694
dependencies:
66976695
semver "^6.3.0"
66986696

@@ -6826,9 +6824,9 @@ object-copy@^0.1.0:
68266824
kind-of "^3.0.3"
68276825

68286826
object-hash@^2.0.1:
6829-
version "2.0.1"
6830-
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.1.tgz#cef18a0c940cc60aa27965ecf49b782cbf101d96"
6831-
integrity sha512-HgcGMooY4JC2PBt9sdUdJ6PMzpin+YtY3r/7wg0uTifP+HJWW8rammseSEHuyt0UeShI183UGssCJqm1bJR7QA==
6827+
version "2.0.2"
6828+
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.2.tgz#f7b2212dbe07d07e340ccd6004c59504fc4015cf"
6829+
integrity sha512-b+2AKjAf6uQlxxv8ChHdM+VT4eeX+ZSwv+pk2xIXZWbo+yxn4/En1iC+GHe/OFYa9on0AhFF2PvuAcFHoiiHaA==
68326830

68336831
object-inspect@^1.7.0:
68346832
version "1.7.0"
@@ -7964,11 +7962,11 @@ postcss-selector-not@^4.0.0:
79647962
postcss "^7.0.2"
79657963

79667964
postcss-selector-parser@^3.0.0:
7967-
version "3.1.1"
7968-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865"
7969-
integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=
7965+
version "3.1.2"
7966+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
7967+
integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
79707968
dependencies:
7971-
dot-prop "^4.1.1"
7969+
dot-prop "^5.2.0"
79727970
indexes-of "^1.0.1"
79737971
uniq "^1.0.1"
79747972

@@ -8141,7 +8139,7 @@ prr@~1.0.1:
81418139
resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
81428140
integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
81438141

8144-
psl@^1.1.24, psl@^1.1.28:
8142+
psl@^1.1.28:
81458143
version "1.7.0"
81468144
resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"
81478145
integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==
@@ -8188,7 +8186,7 @@ punycode@1.3.2:
81888186
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
81898187
integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
81908188

8191-
punycode@^1.2.4, punycode@^1.4.1:
8189+
punycode@^1.2.4:
81928190
version "1.4.1"
81938191
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
81948192
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
@@ -8383,9 +8381,9 @@ read-pkg@^3.0.0:
83838381
util-deprecate "~1.0.1"
83848382

83858383
readable-stream@^3.0.6, readable-stream@^3.1.1:
8386-
version "3.5.0"
8387-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.5.0.tgz#465d70e6d1087f6162d079cd0b5db7fbebfd1606"
8388-
integrity sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==
8384+
version "3.6.0"
8385+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
8386+
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
83898387
dependencies:
83908388
inherits "^2.0.3"
83918389
string_decoder "^1.1.1"
@@ -8499,9 +8497,9 @@ regjsgen@^0.5.0:
84998497
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
85008498

85018499
regjsparser@^0.6.0:
8502-
version "0.6.2"
8503-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96"
8504-
integrity sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
8500+
version "0.6.3"
8501+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.3.tgz#74192c5805d35e9f5ebe3c1fb5b40d40a8a38460"
8502+
integrity sha512-8uZvYbnfAtEm9Ab8NTb3hdLwL4g/LQzEYP7Xs27T96abJCCE2d6r3cPZPQEsLKy0vRSGVNG+/zVGtLr86HQduA==
85058503
dependencies:
85068504
jsesc "~0.5.0"
85078505

@@ -8553,9 +8551,9 @@ request-promise-native@^1.0.5:
85538551
tough-cookie "^2.3.3"
85548552

85558553
request@^2.87.0, request@^2.88.0:
8556-
version "2.88.0"
8557-
resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
8558-
integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==
8554+
version "2.88.2"
8555+
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
8556+
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
85598557
dependencies:
85608558
aws-sign2 "~0.7.0"
85618559
aws4 "^1.8.0"
@@ -8564,7 +8562,7 @@ request@^2.87.0, request@^2.88.0:
85648562
extend "~3.0.2"
85658563
forever-agent "~0.6.1"
85668564
form-data "~2.3.2"
8567-
har-validator "~5.1.0"
8565+
har-validator "~5.1.3"
85688566
http-signature "~1.2.0"
85698567
is-typedarray "~1.0.0"
85708568
isstream "~0.1.2"
@@ -8574,7 +8572,7 @@ request@^2.87.0, request@^2.88.0:
85748572
performance-now "^2.1.0"
85758573
qs "~6.5.2"
85768574
safe-buffer "^5.1.2"
8577-
tough-cookie "~2.4.3"
8575+
tough-cookie "~2.5.0"
85788576
tunnel-agent "^0.6.0"
85798577
uuid "^3.3.2"
85808578

@@ -9428,13 +9426,13 @@ strip-json-comments@~2.0.1:
94289426
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
94299427
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
94309428

9431-
style-loader@1.1.3:
9432-
version "1.1.3"
9433-
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.3.tgz#9e826e69c683c4d9bf9db924f85e9abb30d5e200"
9434-
integrity sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==
9429+
style-loader@0.23.1:
9430+
version "0.23.1"
9431+
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925"
9432+
integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==
94359433
dependencies:
9436-
loader-utils "^1.2.3"
9437-
schema-utils "^2.6.4"
9434+
loader-utils "^1.1.0"
9435+
schema-utils "^1.0.0"
94389436

94399437
stylehacks@^4.0.0:
94409438
version "4.0.3"
@@ -9676,22 +9674,14 @@ toidentifier@1.0.0:
96769674
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
96779675
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
96789676

9679-
tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0:
9677+
tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0, tough-cookie@~2.5.0:
96809678
version "2.5.0"
96819679
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
96829680
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
96839681
dependencies:
96849682
psl "^1.1.28"
96859683
punycode "^2.1.1"
96869684

9687-
tough-cookie@~2.4.3:
9688-
version "2.4.3"
9689-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
9690-
integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==
9691-
dependencies:
9692-
psl "^1.1.24"
9693-
punycode "^1.4.1"
9694-
96959685
tr46@^1.0.1:
96969686
version "1.0.1"
96979687
resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"

0 commit comments

Comments
 (0)
Please sign in to comment.