Skip to content

Commit 5cfc414

Browse files
committed
update deps
1 parent 882dfee commit 5cfc414

File tree

5 files changed

+115
-3644
lines changed

5 files changed

+115
-3644
lines changed

package.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"name": "@reason-react-native/react-navigation",
33
"version": "4.0.0-alpha.0",
4+
"peerDependencies": {
5+
"react-navigation": "^4.0.0",
6+
"reason-react": "^0.7.0",
7+
"reason-react-native": "^0.60.0"
8+
},
49
"publishConfig": {
510
"access": "public"
611
},
@@ -32,19 +37,13 @@
3237
"test": "yarn re:clean-build"
3338
},
3439
"devDependencies": {
35-
"bs-platform": "^5.0.4",
36-
"husky": "^1.3.1",
37-
"lerna": "^3.4.0",
38-
"lint-staged": "^8.1.5",
39-
"npm-run-all": "^3.0.0",
40-
"prettier": "^1.16.4",
41-
"react-navigation": "^4.0.2",
40+
"bs-platform": "^5.2.0",
41+
"husky": "^1.3.0",
42+
"lint-staged": "^8.1.0",
43+
"prettier": "^1.18.0",
4244
"reason-react": "^0.7.0",
4345
"reason-react-native": "^0.60.0"
4446
},
45-
"peerDependencies": {
46-
"react-navigation": "^4.0.0"
47-
},
4847
"prettier": {
4948
"trailingComma": "all",
5049
"proseWrap": "always"

src/AppContainerFunctor.bs.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
var ReactNavigation = require("react-navigation");
44

55
function Make(S) {
6-
var make = ReactNavigation.createAppContainer(S[/* navigator */0]);
7-
return /* module */[/* make */make];
6+
var make = ReactNavigation.createAppContainer(S.navigator);
7+
return {
8+
make: make
9+
};
810
}
911

1012
exports.Make = Make;

src/NavigationOptions.bs.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
'use strict';
22

33

4-
var Header = /* module */[];
4+
var Header = { };
55

6-
var HeaderTitle = /* module */[];
6+
var HeaderTitle = { };
77

8-
var TabBarIcon = /* module */[];
8+
var TabBarIcon = { };
99

10-
var TabBarLabel = /* module */[];
10+
var TabBarLabel = { };
1111

12-
var DrawerIcon = /* module */[];
12+
var DrawerIcon = { };
1313

14-
var DrawerLabel = /* module */[];
14+
var DrawerLabel = { };
1515

1616
exports.Header = Header;
1717
exports.HeaderTitle = HeaderTitle;

src/TabNavigator.bs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict';
22

33

4-
var MaterialTop = /* module */[];
4+
var MaterialTop = { };
55

6-
var Bottom = /* module */[];
6+
var Bottom = { };
77

88
exports.MaterialTop = MaterialTop;
99
exports.Bottom = Bottom;

0 commit comments

Comments
 (0)