Skip to content

Commit d55731f

Browse files
committed
Update deps
1 parent 7a1e8ac commit d55731f

File tree

5 files changed

+840
-1074
lines changed

5 files changed

+840
-1074
lines changed

package.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"!template/lib/ocaml"
2626
],
2727
"devDependencies": {
28-
"bs-platform": "^7.0.0",
29-
"husky": "^1.3.0",
30-
"lint-staged": "^10.1.1",
28+
"bs-platform": "^8.0.0",
29+
"husky": "^4.0.0",
30+
"lint-staged": "^10.0.0",
3131
"npmpub": "^5.0.0",
32-
"prettier": "^1.18.0"
32+
"prettier": "^2.0.0"
3333
},
3434
"scripts": {
3535
"prepare": "cd template && yarn",
@@ -40,8 +40,7 @@
4040
"release": "npmpub"
4141
},
4242
"prettier": {
43-
"trailingComma": "all",
44-
"proseWrap": "always"
43+
"trailingComma": "all"
4544
},
4645
"lint-staged": {
4746
"*.{md,json,js,css}": [

template/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@
1212
"test": "jest"
1313
},
1414
"dependencies": {
15-
"react": "^16.9.0",
16-
"react-native": "^0.61.0",
17-
"reason-react": "^0.7.0",
18-
"reason-react-native": "^0.61.0"
15+
"react": "^16.11.0",
16+
"react-native": "^0.62.0",
17+
"reason-react": "^0.9.0",
18+
"reason-react-native": "^0.62.0"
1919
},
2020
"devDependencies": {
2121
"@babel/core": "^7.6.2",
2222
"@babel/runtime": "^7.6.2",
2323
"@react-native-community/eslint-config": "^0.0.5",
2424
"babel-jest": "^24.9.0",
25-
"bs-platform": "^7.0.0",
25+
"bs-platform": "^8.0.0",
2626
"eslint": "^6.5.1",
2727
"jest": "^24.9.0",
28-
"metro-react-native-babel-preset": "^0.56.0",
29-
"react-test-renderer": "16.9.0"
28+
"metro-react-native-babel-preset": "^0.58.0",
29+
"react-test-renderer": "16.11.0"
3030
},
3131
"jest": {
3232
"preset": "react-native",

template/src/App.re

+3-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module DebugInstructions = {
4545
The main different with JavaScript components you may encounter in React Native
4646
is the fact that they **must** be defined before being referenced
4747
(so before actual component definitions)
48-
More at https://reasonml-community.github.io/reason-react-native/en/docs/apis/Style/
48+
More at https://reason-react-native.github.io/en/docs/apis/Style/
4949
*/
5050
let styles =
5151
Style.(
@@ -139,7 +139,7 @@ let app = () =>
139139
<TouchableOpacity
140140
onPress={_ =>
141141
openURLInBrowser(
142-
"https://reasonml-community.github.io/reason-react-native/en/docs/",
142+
"https://reason-react-native.github.io/en/docs/",
143143
)
144144
}>
145145
<Text
@@ -152,8 +152,7 @@ let app = () =>
152152
(),
153153
)
154154
)>
155-
"https://reasonml-community.github.io/\nreason-react-native/"
156-
->React.string
155+
"https://reason-react-native.github.io/"->React.string
157156
</Text>
158157
</TouchableOpacity>
159158
</View>

0 commit comments

Comments
 (0)