Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Aug 11, 2020
1 parent 7a1e8ac commit d55731f
Show file tree
Hide file tree
Showing 5 changed files with 840 additions and 1,074 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"!template/lib/ocaml"
],
"devDependencies": {
"bs-platform": "^7.0.0",
"husky": "^1.3.0",
"lint-staged": "^10.1.1",
"bs-platform": "^8.0.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"npmpub": "^5.0.0",
"prettier": "^1.18.0"
"prettier": "^2.0.0"
},
"scripts": {
"prepare": "cd template && yarn",
Expand All @@ -40,8 +40,7 @@
"release": "npmpub"
},
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
"trailingComma": "all"
},
"lint-staged": {
"*.{md,json,js,css}": [
Expand Down
14 changes: 7 additions & 7 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"test": "jest"
},
"dependencies": {
"react": "^16.9.0",
"react-native": "^0.61.0",
"reason-react": "^0.7.0",
"reason-react-native": "^0.61.0"
"react": "^16.11.0",
"react-native": "^0.62.0",
"reason-react": "^0.9.0",
"reason-react-native": "^0.62.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"bs-platform": "^7.0.0",
"bs-platform": "^8.0.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.9.0"
"metro-react-native-babel-preset": "^0.58.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native",
Expand Down
7 changes: 3 additions & 4 deletions template/src/App.re
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module DebugInstructions = {
The main different with JavaScript components you may encounter in React Native
is the fact that they **must** be defined before being referenced
(so before actual component definitions)
More at https://reasonml-community.github.io/reason-react-native/en/docs/apis/Style/
More at https://reason-react-native.github.io/en/docs/apis/Style/
*/
let styles =
Style.(
Expand Down Expand Up @@ -139,7 +139,7 @@ let app = () =>
<TouchableOpacity
onPress={_ =>
openURLInBrowser(
"https://reasonml-community.github.io/reason-react-native/en/docs/",
"https://reason-react-native.github.io/en/docs/",
)
}>
<Text
Expand All @@ -152,8 +152,7 @@ let app = () =>
(),
)
)>
"https://reasonml-community.github.io/\nreason-react-native/"
->React.string
"https://reason-react-native.github.io/"->React.string
</Text>
</TouchableOpacity>
</View>
Expand Down
Loading

0 comments on commit d55731f

Please sign in to comment.