File tree Expand file tree Collapse file tree 5 files changed +115
-3644
lines changed
Expand file tree Collapse file tree 5 files changed +115
-3644
lines changed Original file line number Diff line number Diff line change 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 },
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"
Original file line number Diff line number Diff line change 33var ReactNavigation = require ( "react-navigation" ) ;
44
55function 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
1012exports . Make = Make ;
Original file line number Diff line number Diff line change 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
1616exports . Header = Header ;
1717exports . HeaderTitle = HeaderTitle ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
33
4- var MaterialTop = /* module */ [ ] ;
4+ var MaterialTop = { } ;
55
6- var Bottom = /* module */ [ ] ;
6+ var Bottom = { } ;
77
88exports . MaterialTop = MaterialTop ;
99exports . Bottom = Bottom ;
You can’t perform that action at this time.
0 commit comments