Skip to content

Commit

Permalink
update expo
Browse files Browse the repository at this point in the history
  • Loading branch information
teticio committed Oct 6, 2022
1 parent bfa638c commit 6890c56
Show file tree
Hide file tree
Showing 5 changed files with 2,001 additions and 3,374 deletions.
65 changes: 64 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,67 @@ out/
output/

.terraform*
terraform.*
terraform.*
# @generated expo-cli sync-e7dcf75f4e856f7b6f3239b3f3a7dd614ee755a8
# The following patterns were generated by expo-cli

# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# Bundle artifacts
*.jsbundle

# CocoaPods
/ios/Pods/

# Expo
.expo/
web-build/
dist/

# @end expo-cli

ios/
android/
File renamed without changes.
4 changes: 4 additions & 0 deletions metro.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Learn more https://docs.expo.io/guides/customizing-metro
const { getDefaultConfig } = require('expo/metro-config');

module.exports = getDefaultConfig(__dirname);
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"react-native": "0.69.6",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.5.0",
"react-native-get-random-values": "~1.8.0",
"react-native-get-random-values": "^1.7.0",
"react-native-paper": "^4.9.2",
"react-native-safe-area-context": "4.3.1",
"react-native-svg": "12.3.0",
Expand Down Expand Up @@ -65,9 +65,11 @@
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-native": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"bundle:ios": "react-native bundle --entry-file src/index.native.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"postinstall": "yarn run bundle:ios",
"start-native": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject-native": "expo eject",
"electron": "cd electron && electron-forge start",
Expand Down
Loading

0 comments on commit 6890c56

Please sign in to comment.