Skip to content

Commit 46b68df

Browse files
committed
Update all dependencies.
1 parent e8f8099 commit 46b68df

File tree

11 files changed

+43
-43
lines changed

11 files changed

+43
-43
lines changed

Diff for: examples/basic-fetch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/basic-hook/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/custom-instance/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/movie-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/with-abortcontroller/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/with-nextjs/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
},
1717
"dependencies": {
1818
"isomorphic-fetch": "2.2.1",
19-
"next": "9.0.8",
20-
"react": "16.10.2",
19+
"next": "9.1.1",
20+
"react": "16.11.0",
2121
"react-async": "^9.0.0",
2222
"react-async-devtools": "^9.0.0",
23-
"react-dom": "16.10.2"
23+
"react-dom": "16.11.0"
2424
},
2525
"devDependencies": {
2626
"relative-deps": "0.1.2"

Diff for: examples/with-react-native/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
},
1717
"dependencies": {
1818
"expo": "35.0.0",
19-
"react": "16.10.2",
19+
"react": "16.11.0",
2020
"react-async": "^9.0.0",
21-
"react-dom": "16.10.2",
21+
"react-dom": "16.11.0",
2222
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
2323
"react-native-web": "0.11.7"
2424
},
2525
"devDependencies": {
26-
"babel-preset-expo": "7.0.0",
26+
"babel-preset-expo": "7.1.0",
2727
"relative-deps": "0.1.2"
2828
},
2929
"relativeDependencies": {

Diff for: examples/with-react-router/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"build": "parcel build index.html"
1212
},
1313
"dependencies": {
14-
"react": "16.10.2",
14+
"react": "16.11.0",
1515
"react-async": "^9.0.0",
1616
"react-async-devtools": "^9.0.0",
17-
"react-dom": "16.10.2",
17+
"react-dom": "16.11.0",
1818
"react-router-dom": "5.1.2"
1919
},
2020
"devDependencies": {
21-
"@babel/core": "7.6.2",
22-
"@babel/preset-react": "7.0.0",
23-
"parcel-bundler": "1.12.3",
21+
"@babel/core": "7.6.4",
22+
"@babel/preset-react": "7.6.3",
23+
"parcel-bundler": "1.12.4",
2424
"relative-deps": "0.1.2"
2525
},
2626
"relativeDependencies": {

Diff for: examples/with-suspense/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"react": "16.10.2",
17+
"react": "16.11.0",
1818
"react-async": "^9.0.0",
1919
"react-async-devtools": "^9.0.0",
20-
"react-dom": "16.10.2",
20+
"react-dom": "16.11.0",
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {

Diff for: examples/with-typescript/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"@types/node": "12.7.11",
18-
"@types/react": "16.9.5",
19-
"@types/react-dom": "16.9.1",
20-
"react": "16.10.2",
17+
"@types/node": "12.11.7",
18+
"@types/react": "16.9.11",
19+
"@types/react-dom": "16.9.3",
20+
"react": "16.11.0",
2121
"react-async": "^9.0.0",
2222
"react-async-devtools": "^9.0.0",
23-
"react-dom": "16.10.2",
23+
"react-dom": "16.11.0",
2424
"react-scripts": "3.2.0",
25-
"typescript": "3.6.3"
25+
"typescript": "3.6.4"
2626
},
2727
"devDependencies": {
28-
"@types/jest": "24.0.18",
28+
"@types/jest": "24.0.20",
2929
"relative-deps": "0.1.2"
3030
},
3131
"relativeDependencies": {

Diff for: package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -41,33 +41,33 @@
4141
"@babel/preset-env": "7.6.3",
4242
"@babel/preset-react": "7.6.3",
4343
"@pika/pack": "0.5.0",
44-
"@pika/plugin-build-node": "0.6.1",
45-
"@pika/plugin-build-types": "0.6.1",
46-
"@pika/plugin-build-web": "0.6.1",
47-
"@pika/plugin-standard-pkg": "0.6.1",
48-
"@storybook/react": "5.2.4",
49-
"@testing-library/jest-dom": "4.1.2",
44+
"@pika/plugin-build-node": "0.7.1",
45+
"@pika/plugin-build-types": "0.7.1",
46+
"@pika/plugin-build-web": "0.7.1",
47+
"@pika/plugin-standard-pkg": "0.7.1",
48+
"@storybook/react": "5.2.5",
49+
"@testing-library/jest-dom": "4.2.0",
5050
"@testing-library/react": "9.3.0",
5151
"babel-eslint": "10.0.3",
5252
"babel-jest": "24.9.0",
5353
"babel-loader": "8.0.6",
5454
"copyfiles": "2.1.1",
55-
"eslint": "6.5.1",
55+
"eslint": "6.6.0",
5656
"eslint-config-prettier": "6.4.0",
57-
"eslint-plugin-jest": "22.19.0",
57+
"eslint-plugin-jest": "22.20.1",
5858
"eslint-plugin-prettier": "3.1.1",
5959
"eslint-plugin-promise": "4.2.1",
6060
"eslint-plugin-react": "7.16.0",
61-
"eslint-plugin-react-hooks": "2.1.2",
61+
"eslint-plugin-react-hooks": "2.2.0",
6262
"jest": "24.9.0",
6363
"lerna": "3.18.3",
64-
"now": "16.3.1",
64+
"now": "16.4.3",
6565
"npm-run-all": "4.1.5",
6666
"prettier": "1.18.2",
6767
"prop-types": "15.7.2",
68-
"react": "16.10.2",
69-
"react-async": "8.0.0",
70-
"react-dom": "16.10.2",
68+
"react": "^16.11.0",
69+
"react-async": "9.0.0",
70+
"react-dom": "^16.11.0",
7171
"storybook-chromatic": "3.0.3"
7272
}
7373
}

0 commit comments

Comments
 (0)