Skip to content

Commit

Permalink
fix: simplify dependency management by only requiring the native libr…
Browse files Browse the repository at this point in the history
…ary (automatic linking)
  • Loading branch information
RichardLindhout committed Jun 24, 2023
1 parent 24bcb10 commit 1cfce6f
Show file tree
Hide file tree
Showing 3 changed files with 895 additions and 440 deletions.
8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
"@types/jest": "^29.2.4",
"@types/react": "^18.0.28",
"@types/react-helmet": "^6.1.6",
"@types/react-native": "^0.71.3",
"color": "^4.2.3",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
Expand All @@ -84,22 +83,17 @@
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "^18.2.0",
"react-native": "^0.70.6",
"react-native": "^0.72.0",
"react-native-builder-bob": "^0.20.4",
"release-it": "^15.0.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"color": "*",
"expo-linking": "*",
"navigation-react-native": "*",
"react": "*",
"react-native": "*"
},
"resolutions": {
"@types/react": "^18.0.28",
"@types/react-native": "^0.71.3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
Expand Down
2 changes: 1 addition & 1 deletion src/web/BottomTabsWrapperWeb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const bottomStyles = StyleSheet.create({
// shadowOpacity: 0.34,
// shadowRadius: 6.27,
// elevation: 10,
paddingBottom: 'env(safe-area-inset-bottom)',
paddingBottom: 'env(safe-area-inset-bottom)' as any,
},
horizontal: {
flexDirection: 'column',
Expand Down
Loading

0 comments on commit 1cfce6f

Please sign in to comment.