Skip to content

Commit e31546a

Browse files
committed
fix versions
1 parent a12c610 commit e31546a

File tree

9 files changed

+78
-109
lines changed

9 files changed

+78
-109
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The project now consists of 3 packages.
2626

2727
## Get Started
2828

29-
### Make sure you run Node.js v10+
29+
### Make sure you run Node.js v10.15+
3030

3131
To install check ([Node.js installation](https://nodejs.org/en/) or [Node Version Manager installation](https://github.com/nvm-sh/nvm)).
3232

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"clean:update": "lerna clean && lerna bootstrap"
2323
},
2424
"devDependencies": {
25-
"@testing-library/jest-dom": "^5.7.0",
26-
"@testing-library/react": "^10.0.4",
27-
"@testing-library/user-event": "^10.1.1",
25+
"@testing-library/jest-dom": "^4.2.4",
26+
"@testing-library/react": "^9.5.0",
27+
"@testing-library/user-event": "^9.0.0",
2828
"@types/jest": "^25.2.1",
2929
"@types/node": "^13.13.5",
3030
"@types/react": "^16.9.34",

packages/shared/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"main": "build/index.js",
1010
"typings": "build/index.d.ts",
1111
"scripts": {
12-
"start": "tsc -w",
13-
"build": "tsc",
14-
"typecheck": "tsc --noEmit --skipLibCheck",
12+
"start": "tsc -p tsconfig.json -w",
13+
"build": "tsc -p tsconfig.json",
14+
"typecheck": "tsc -p tsconfig.json",
1515
"lint": "eslint . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx",
1616
"lint:fix": "eslint --fix . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx"
1717
},

packages/utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"main": "build/index.js",
1010
"typings": "build/index.d.ts",
1111
"scripts": {
12-
"start": "tsc -w",
13-
"build": "tsc",
14-
"typecheck": "tsc --noEmit --skipLibCheck",
12+
"start": "tsc -p tsconfig.json -w",
13+
"build": "tsc -p tsconfig.json",
14+
"typecheck": "tsc -p tsconfig.json",
1515
"lint": "eslint . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx",
1616
"lint:fix": "eslint --fix . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx"
1717
},

packages/utils/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"src"
2727
],
2828
"exclude": [
29-
"**/node_modules/**",
29+
"../../node_modules",
3030
"node_modules",
3131
"build"
3232
]

packages/www/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"build": "react-scripts build",
1212
"test": "react-scripts test",
1313
"eject": "react-scripts eject",
14-
"typecheck": "tsc --noEmit --skipLibCheck",
14+
"typecheck": "tsc -p tsconfig.json",
1515
"lint": "eslint . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx",
1616
"lint:fix": "eslint --fix . --ignore-path ../../.eslintignore --ext ts --ext tsx --ext js --ext jsx"
1717
},
1818
"peerDependencies": {
19-
"@testing-library/jest-dom": "^5.7.0",
20-
"@testing-library/react": "^10.0.4",
21-
"@testing-library/user-event": "^10.1.1",
19+
"@testing-library/jest-dom": "^4.2.4",
20+
"@testing-library/react": "^9.5.0",
21+
"@testing-library/user-event": "^9.0.0",
2222
"@types/jest": ">=24.0.0",
2323
"@types/node": ">=13.0.0",
2424
"@types/react": ">=16.8.0",

packages/www/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"src"
2424
],
2525
"exclude": [
26-
"**/node_modules/**",
26+
"../../node_modules",
2727
"node_modules",
2828
"build"
2929
]

tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,5 @@
2121
},
2222
"include": [
2323
"packages/*/src"
24-
],
25-
"exclude": [
26-
"**/node_modules/**",
27-
"node_modules",
28-
"**/build/**",
29-
"build"
3024
]
3125
}

yarn.lock

Lines changed: 62 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@
10151015
dependencies:
10161016
regenerator-runtime "^0.13.4"
10171017

1018-
"@babel/runtime@^7.0.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.4", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2", "@babel/runtime@^7.9.6":
1018+
"@babel/runtime@^7.0.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.1", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.4", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
10191019
version "7.9.6"
10201020
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f"
10211021
integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==
@@ -1337,16 +1337,6 @@
13371337
"@types/yargs" "^15.0.0"
13381338
chalk "^3.0.0"
13391339

1340-
"@jest/types@^26.0.1":
1341-
version "26.0.1"
1342-
resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.0.1.tgz#b78333fbd113fa7aec8d39de24f88de8686dac67"
1343-
integrity sha512-IbtjvqI9+eS1qFnOIEL7ggWmT+iK/U+Vde9cGWtYb/b6XgKb3X44ZAe/z9YZzoAAZ/E92m0DqrilF934IGNnQA==
1344-
dependencies:
1345-
"@types/istanbul-lib-coverage" "^2.0.0"
1346-
"@types/istanbul-reports" "^1.1.1"
1347-
"@types/yargs" "^15.0.0"
1348-
chalk "^4.0.0"
1349-
13501340
13511341
version "3.20.0"
13521342
resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.20.0.tgz#bea7edf36fc93fb72ec34cb9ba854c48d4abf309"
@@ -2147,6 +2137,11 @@
21472137
dependencies:
21482138
"@types/node" ">= 8"
21492139

2140+
"@sheerun/mutationobserver-shim@^0.3.2":
2141+
version "0.3.3"
2142+
resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz#5405ee8e444ed212db44e79351f0c70a582aae25"
2143+
integrity sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw==
2144+
21502145
"@svgr/babel-plugin-add-jsx-attribute@^4.2.0":
21512146
version "4.2.0"
21522147
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz#dadcb6218503532d6884b210e7f3c502caaa44b1"
@@ -2250,44 +2245,47 @@
22502245
"@svgr/plugin-svgo" "^4.3.1"
22512246
loader-utils "^1.2.3"
22522247

2253-
"@testing-library/dom@^7.2.2":
2254-
version "7.5.1"
2255-
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.5.1.tgz#c3537e2b970576072ea4083e603463843c8a8d2b"
2256-
integrity sha512-c9iQWyFtdsqaVScIlOdgdG3HXWkYvGzin02nJ4LUnzNXKyxqeqq9KPIAAjnmfrSApbRc8mK1l6esiCeEredfRw==
2248+
"@testing-library/dom@^6.15.0":
2249+
version "6.16.0"
2250+
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.16.0.tgz#04ada27ed74ad4c0f0d984a1245bb29b1fd90ba9"
2251+
integrity sha512-lBD88ssxqEfz0wFL6MeUyyWZfV/2cjEZZV3YRpb2IoJRej/4f1jB0TzqIOznTpfR1r34CNesrubxwIlAQ8zgPA==
22572252
dependencies:
2258-
"@babel/runtime" "^7.9.6"
2253+
"@babel/runtime" "^7.8.4"
2254+
"@sheerun/mutationobserver-shim" "^0.3.2"
2255+
"@types/testing-library__dom" "^6.12.1"
22592256
aria-query "^4.0.2"
2260-
dom-accessibility-api "^0.4.3"
2261-
pretty-format "^26.0.1"
2257+
dom-accessibility-api "^0.3.0"
2258+
pretty-format "^25.1.0"
2259+
wait-for-expect "^3.0.2"
22622260

2263-
"@testing-library/jest-dom@^5.7.0":
2264-
version "5.7.0"
2265-
resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.7.0.tgz#b2e2acb4c088a293d52ba2cd1674b526282a2f87"
2266-
integrity sha512-ZV0OtBXmTDEDxrIbqJXiOcXCZ6aIMpmDlmfHj0hGNsSuQ/nX0qPAs9HWmCzXvPfTrhufTiH2nJLvDJu/LgHzwQ==
2261+
"@testing-library/jest-dom@^4.2.4":
2262+
version "4.2.4"
2263+
resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-4.2.4.tgz#00dfa0cbdd837d9a3c2a7f3f0a248ea6e7b89742"
2264+
integrity sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==
22672265
dependencies:
2268-
"@babel/runtime" "^7.9.2"
2269-
"@types/testing-library__jest-dom" "^5.0.2"
2270-
chalk "^3.0.0"
2271-
css "^2.2.4"
2266+
"@babel/runtime" "^7.5.1"
2267+
chalk "^2.4.1"
2268+
css "^2.2.3"
22722269
css.escape "^1.5.1"
2273-
jest-diff "^25.1.0"
2274-
jest-matcher-utils "^25.1.0"
2275-
lodash "^4.17.15"
2270+
jest-diff "^24.0.0"
2271+
jest-matcher-utils "^24.0.0"
2272+
lodash "^4.17.11"
2273+
pretty-format "^24.0.0"
22762274
redent "^3.0.0"
22772275

2278-
"@testing-library/react@^10.0.4":
2279-
version "10.0.4"
2280-
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-10.0.4.tgz#8e0e299cd91acc626d81ed8489fdc13df864c31d"
2281-
integrity sha512-2e1B5debfuiIGbvUuiSXybskuh7ZTVJDDvG/IxlzLOY9Co/mKFj9hIklAe2nGZYcOUxFaiqWrRZ9vCVGzJfRlQ==
2276+
"@testing-library/react@^9.5.0":
2277+
version "9.5.0"
2278+
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-9.5.0.tgz#71531655a7890b61e77a1b39452fbedf0472ca5e"
2279+
integrity sha512-di1b+D0p+rfeboHO5W7gTVeZDIK5+maEgstrZbWZSSvxDyfDRkkyBE1AJR5Psd6doNldluXlCWqXriUfqu/9Qg==
22822280
dependencies:
2283-
"@babel/runtime" "^7.9.6"
2284-
"@testing-library/dom" "^7.2.2"
2285-
"@types/testing-library__react" "^10.0.1"
2281+
"@babel/runtime" "^7.8.4"
2282+
"@testing-library/dom" "^6.15.0"
2283+
"@types/testing-library__react" "^9.1.2"
22862284

2287-
"@testing-library/user-event@^10.1.1":
2288-
version "10.1.1"
2289-
resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-10.1.1.tgz#c37783460eb3d2c7f4493418377b5f1e30d4cdce"
2290-
integrity sha512-bOfY0j2FXQcq3k9D5rhYyVqaR1zibl14vqZxXH9q9IQhDvx62hBIFC9n0hHhDgSDEEOVeHejAlC2nGK/79p8Dw==
2285+
"@testing-library/user-event@^9.0.0":
2286+
version "9.0.0"
2287+
resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-9.0.0.tgz#3996668a44d7bb4a765fde64e2b102391397bea4"
2288+
integrity sha512-WY/MIngH2p8qKS97uy5J3uaTnZwTw1THMttkVkEHaAw/zXd9cRPDbZEN1tXNYaRkW+n1KRIPbr+xX9arTswYVg==
22912289

22922290
"@types/babel__core@^7.1.0":
22932291
version "7.1.7"
@@ -2366,7 +2364,7 @@
23662364
"@types/istanbul-lib-coverage" "*"
23672365
"@types/istanbul-lib-report" "*"
23682366

2369-
"@types/jest@*", "@types/jest@^25.2.1":
2367+
"@types/jest@^25.2.1":
23702368
version "25.2.1"
23712369
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.1.tgz#9544cd438607955381c1bdbdb97767a249297db5"
23722370
integrity sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA==
@@ -2431,17 +2429,17 @@
24312429
dependencies:
24322430
pretty-format "^25.1.0"
24332431

2434-
"@types/testing-library__jest-dom@^5.0.2":
2435-
version "5.0.4"
2436-
resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.0.4.tgz#c7bfbafb920cd1ce40506474e70ee73637f33701"
2437-
integrity sha512-Ns69aaNvlxvXkPxIwsqeaWH5vJpwa/pdBIlf8LGkRnbV3tiqUgifs13moLXg1NQ2AM23qRR5CtHarNshvRyEdA==
2432+
"@types/testing-library__dom@^6.12.1":
2433+
version "6.14.0"
2434+
resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz#1aede831cb4ed4a398448df5a2c54b54a365644e"
2435+
integrity sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA==
24382436
dependencies:
2439-
"@types/jest" "*"
2437+
pretty-format "^24.3.0"
24402438

2441-
"@types/testing-library__react@^10.0.1":
2442-
version "10.0.1"
2443-
resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-10.0.1.tgz#92bb4a02394bf44428e35f1da2970ed77f803593"
2444-
integrity sha512-RbDwmActAckbujLZeVO/daSfdL1pnjVqas25UueOkAY5r7vriavWf0Zqg7ghXMHa8ycD/kLkv8QOj31LmSYwww==
2439+
"@types/testing-library__react@^9.1.2":
2440+
version "9.1.3"
2441+
resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-9.1.3.tgz#35eca61cc6ea923543796f16034882a1603d7302"
2442+
integrity sha512-iCdNPKU3IsYwRK9JieSYAiX0+aYDXOGAmrC/3/M7AqqSDKnWWVv07X+Zk1uFSL7cMTUYzv4lQRfohucEocn5/w==
24452443
dependencies:
24462444
"@types/react-dom" "*"
24472445
"@types/testing-library__dom" "*"
@@ -3735,14 +3733,6 @@ chalk@^3.0.0:
37353733
ansi-styles "^4.1.0"
37363734
supports-color "^7.1.0"
37373735

3738-
chalk@^4.0.0:
3739-
version "4.0.0"
3740-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72"
3741-
integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==
3742-
dependencies:
3743-
ansi-styles "^4.1.0"
3744-
supports-color "^7.1.0"
3745-
37463736
chardet@^0.7.0:
37473737
version "0.7.0"
37483738
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
@@ -4446,7 +4436,7 @@ css.escape@^1.5.1:
44464436
resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
44474437
integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
44484438

4449-
css@^2.0.0, css@^2.2.4:
4439+
css@^2.0.0, css@^2.2.3:
44504440
version "2.2.4"
44514441
resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929"
44524442
integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
@@ -4892,10 +4882,10 @@ doctrine@^3.0.0:
48924882
dependencies:
48934883
esutils "^2.0.2"
48944884

4895-
dom-accessibility-api@^0.4.3:
4896-
version "0.4.3"
4897-
resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.4.3.tgz#93ca9002eb222fd5a343b6e5e6b9cf5929411c4c"
4898-
integrity sha512-JZ8iPuEHDQzq6q0k7PKMGbrIdsgBB7TRrtVOUm4nSMCExlg5qQG4KXWTH2k90yggjM4tTumRGwTKJSldMzKyLA==
4885+
dom-accessibility-api@^0.3.0:
4886+
version "0.3.0"
4887+
resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.3.0.tgz#511e5993dd673b97c87ea47dba0e3892f7e0c983"
4888+
integrity sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA==
48994889

49004890
dom-converter@^0.2:
49014891
version "0.2.0"
@@ -7252,7 +7242,7 @@ jest-config@^24.9.0:
72527242
pretty-format "^24.9.0"
72537243
realpath-native "^1.1.0"
72547244

7255-
jest-diff@^24.9.0:
7245+
jest-diff@^24.0.0, jest-diff@^24.9.0:
72567246
version "24.9.0"
72577247
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da"
72587248
integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==
@@ -7262,7 +7252,7 @@ jest-diff@^24.9.0:
72627252
jest-get-type "^24.9.0"
72637253
pretty-format "^24.9.0"
72647254

7265-
jest-diff@^25.1.0, jest-diff@^25.2.1, jest-diff@^25.5.0:
7255+
jest-diff@^25.2.1:
72667256
version "25.5.0"
72677257
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9"
72687258
integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==
@@ -7381,7 +7371,7 @@ jest-leak-detector@^24.9.0:
73817371
jest-get-type "^24.9.0"
73827372
pretty-format "^24.9.0"
73837373

7384-
jest-matcher-utils@^24.9.0:
7374+
jest-matcher-utils@^24.0.0, jest-matcher-utils@^24.9.0:
73857375
version "24.9.0"
73867376
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073"
73877377
integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==
@@ -7391,16 +7381,6 @@ jest-matcher-utils@^24.9.0:
73917381
jest-get-type "^24.9.0"
73927382
pretty-format "^24.9.0"
73937383

7394-
jest-matcher-utils@^25.1.0:
7395-
version "25.5.0"
7396-
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867"
7397-
integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==
7398-
dependencies:
7399-
chalk "^3.0.0"
7400-
jest-diff "^25.5.0"
7401-
jest-get-type "^25.2.6"
7402-
pretty-format "^25.5.0"
7403-
74047384
jest-message-util@^24.9.0:
74057385
version "24.9.0"
74067386
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3"
@@ -10200,7 +10180,7 @@ pretty-error@^2.1.1:
1020010180
renderkid "^2.0.1"
1020110181
utila "~0.4"
1020210182

10203-
pretty-format@^24.9.0:
10183+
pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.9.0:
1020410184
version "24.9.0"
1020510185
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9"
1020610186
integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==
@@ -10220,16 +10200,6 @@ pretty-format@^25.1.0, pretty-format@^25.2.1, pretty-format@^25.5.0:
1022010200
ansi-styles "^4.0.0"
1022110201
react-is "^16.12.0"
1022210202

10223-
pretty-format@^26.0.1:
10224-
version "26.0.1"
10225-
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.0.1.tgz#a4fe54fe428ad2fd3413ca6bbd1ec8c2e277e197"
10226-
integrity sha512-SWxz6MbupT3ZSlL0Po4WF/KujhQaVehijR2blyRDCzk9e45EaYMVhMBn49fnRuHxtkSpXTes1GxNpVmH86Bxfw==
10227-
dependencies:
10228-
"@jest/types" "^26.0.1"
10229-
ansi-regex "^5.0.0"
10230-
ansi-styles "^4.0.0"
10231-
react-is "^16.12.0"
10232-
1023310203
private@^0.1.8:
1023410204
version "0.1.8"
1023510205
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
@@ -12634,6 +12604,11 @@ w3c-xmlserializer@^1.1.2:
1263412604
webidl-conversions "^4.0.2"
1263512605
xml-name-validator "^3.0.0"
1263612606

12607+
wait-for-expect@^3.0.2:
12608+
version "3.0.2"
12609+
resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-3.0.2.tgz#d2f14b2f7b778c9b82144109c8fa89ceaadaa463"
12610+
integrity sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag==
12611+
1263712612
walker@^1.0.7, walker@~1.0.5:
1263812613
version "1.0.7"
1263912614
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"

0 commit comments

Comments
 (0)