Skip to content

Commit b4cbfd4

Browse files
committed
Merge branch 'next' into pr/Khartir/105
2 parents 3bc18ce + 5f1c1b1 commit b4cbfd4

File tree

16 files changed

+49
-35
lines changed

16 files changed

+49
-35
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,15 @@
212212
"contributions": [
213213
"ideas"
214214
]
215+
},
216+
{
217+
"login": "AlixWang",
218+
"name": "AlixWang",
219+
"avatar_url": "https://avatars0.githubusercontent.com/u/5417459?v=4",
220+
"profile": "https://github.com/AlixWang",
221+
"contributions": [
222+
"doc"
223+
]
215224
}
216225
],
217226
"contributorsPerLine": 7,

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
147147
</tr>
148148
<tr>
149149
<td align="center"><a href="https://munir.dev"><img src="https://avatars3.githubusercontent.com/u/5339664?v=4" width="75px;" alt="Munir Ahmed Elsangedy"/><br /><sub><b>Munir Ahmed Elsangedy</b></sub></a><br /><a href="#ideas-elsangedy" title="Ideas, Planning, & Feedback">🤔</a></td>
150+
<td align="center"><a href="https://github.com/AlixWang"><img src="https://avatars0.githubusercontent.com/u/5417459?v=4" width="75px;" alt="AlixWang"/><br /><sub><b>AlixWang</b></sub></a><br /><a href="https://github.com/async-library/react-async/commits?author=AlixWang" title="Documentation">📖</a></td>
150151
</tr>
151152
</table>
152153

docs/guide/separating-view-logic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const fetchPerson = async ({ id }, { signal }) => {
1515
}
1616

1717
const Person = ({ id }) => {
18-
const { data, error } = useAsync({ promiseFn: fetchPerson, id })
18+
const state = useAsync({ promiseFn: fetchPerson, id })
1919
return children(state)
2020
}
2121

examples/basic-fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/basic-hook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/custom-instance/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/movie-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/with-abortcontroller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/with-nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
},
1717
"dependencies": {
1818
"isomorphic-fetch": "2.2.1",
19-
"next": "9.1.1",
19+
"next": "9.1.3",
2020
"react": "16.11.0",
2121
"react-async": "^9.0.0",
2222
"react-async-devtools": "^9.0.0",
2323
"react-dom": "16.11.0"
2424
},
2525
"devDependencies": {
26-
"relative-deps": "0.1.2"
26+
"relative-deps": "0.2.0"
2727
},
2828
"relativeDependencies": {
2929
"react-async": "../../packages/react-async/pkg",

examples/with-react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"web": "expo start --web"
1616
},
1717
"dependencies": {
18-
"expo": "35.0.0",
18+
"expo": "35.0.1",
1919
"react": "16.11.0",
2020
"react-async": "^9.0.0",
2121
"react-dom": "16.11.0",
@@ -24,7 +24,7 @@
2424
},
2525
"devDependencies": {
2626
"babel-preset-expo": "7.1.0",
27-
"relative-deps": "0.1.2"
27+
"relative-deps": "0.2.0"
2828
},
2929
"relativeDependencies": {
3030
"react-async": "../../packages/react-async/pkg"

examples/with-react-router/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"react-router-dom": "5.1.2"
1919
},
2020
"devDependencies": {
21-
"@babel/core": "7.6.4",
22-
"@babel/preset-react": "7.6.3",
21+
"@babel/core": "7.7.2",
22+
"@babel/preset-react": "7.7.0",
2323
"parcel-bundler": "1.12.4",
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/with-suspense/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts": "3.2.0"
2222
},
2323
"devDependencies": {
24-
"relative-deps": "0.1.2"
24+
"relative-deps": "0.2.0"
2525
},
2626
"relativeDependencies": {
2727
"react-async": "../../packages/react-async/pkg",

examples/with-typescript/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
"now-build": "SKIP_PREFLIGHT_CHECK=true react-scripts build"
1515
},
1616
"dependencies": {
17-
"@types/node": "12.11.7",
17+
"@types/node": "12.12.6",
1818
"@types/react": "16.9.11",
19-
"@types/react-dom": "16.9.3",
19+
"@types/react-dom": "16.9.4",
2020
"react": "16.11.0",
2121
"react-async": "^9.0.0",
2222
"react-async-devtools": "^9.0.0",
2323
"react-dom": "16.11.0",
2424
"react-scripts": "3.2.0",
25-
"typescript": "3.6.4"
25+
"typescript": "3.7.2"
2626
},
2727
"devDependencies": {
28-
"@types/jest": "24.0.20",
29-
"relative-deps": "0.1.2"
28+
"@types/jest": "24.0.22",
29+
"relative-deps": "0.2.0"
3030
},
3131
"relativeDependencies": {
3232
"react-async": "../../packages/react-async/pkg",

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
"postbump": "yarn build:packages"
3737
},
3838
"devDependencies": {
39-
"@babel/core": "7.6.4",
40-
"@babel/plugin-proposal-class-properties": "^7.5.5",
39+
"@babel/core": "7.7.2",
40+
"@babel/plugin-proposal-class-properties": "7.5.5",
4141
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
4242
"@babel/plugin-transform-runtime": "7.6.2",
43-
"@babel/preset-env": "7.6.3",
44-
"@babel/preset-react": "7.6.3",
43+
"@babel/preset-env": "7.7.1",
44+
"@babel/preset-react": "7.7.0",
4545
"@babel/preset-typescript": "7.3.3",
4646
"@pika/pack": "0.5.0",
4747
"@pika/plugin-build-node": "0.7.1",
@@ -51,33 +51,33 @@
5151
"@pika/plugin-bundle-types": "0.7.1",
5252
"@pika/plugin-standard-pkg": "0.7.1",
5353
"@pika/plugin-ts-standard-pkg": "0.7.1",
54-
"@storybook/react": "5.2.5",
55-
"@testing-library/jest-dom": "4.2.0",
56-
"@testing-library/react": "9.3.0",
54+
"@storybook/react": "5.2.6",
55+
"@testing-library/jest-dom": "4.2.3",
56+
"@testing-library/react": "9.3.2",
5757
"@typescript-eslint/eslint-plugin": "2.1.0",
5858
"@typescript-eslint/parser": "2.1.0",
5959
"babel-eslint": "10.0.3",
6060
"babel-jest": "24.9.0",
6161
"babel-loader": "8.0.6",
6262
"copyfiles": "2.1.1",
6363
"eslint": "6.6.0",
64-
"eslint-config-prettier": "6.4.0",
65-
"eslint-plugin-jest": "22.20.1",
64+
"eslint-config-prettier": "6.5.0",
65+
"eslint-plugin-jest": "23.0.3",
6666
"eslint-plugin-prettier": "3.1.1",
6767
"eslint-plugin-promise": "4.2.1",
6868
"eslint-plugin-react": "7.16.0",
6969
"eslint-plugin-react-hooks": "2.2.0",
7070
"jest": "24.9.0",
71-
"lerna": "3.18.3",
71+
"lerna": "3.18.4",
7272
"node-jq": "1.10.3",
73-
"now": "16.4.3",
73+
"now": "16.4.4",
7474
"npm-run-all": "4.1.5",
75-
"prettier": "1.18.2",
75+
"prettier": "1.19.1",
7676
"prop-types": "15.7.2",
7777
"react": "16.11.0",
7878
"react-async": "9.0.0",
7979
"react-dom": "16.11.0",
80-
"storybook-chromatic": "3.0.3",
80+
"storybook-chromatic": "3.1.0",
8181
"typescript": "3.6.4"
8282
}
8383
}

renovate.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"extends": [
3-
"config:base"
4-
]
2+
"extends": ["config:base"],
3+
"automerge": true,
4+
"automergeType": "branch",
5+
"major": {
6+
"automerge": false
7+
}
58
}

0 commit comments

Comments
 (0)