Skip to content

Commit e98646f

Browse files
committed
[test] recreate project from expo sdk 52
- git rm -rf test - yarn create expo-app -t blank@@sdk-52 test - add postinstall to package.json to replace jsc dist - update app.json - add appId - add jsEngine=jsc - add maestro.yaml
1 parent 1369a48 commit e98646f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+3227
-8282
lines changed

test/.eslintrc.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

test/.gitignore

Lines changed: 29 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,36 @@
1-
# OSX
2-
#
3-
.DS_Store
1+
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
42

5-
# Xcode
6-
#
7-
build/
8-
*.pbxuser
9-
!default.pbxuser
10-
*.mode1v3
11-
!default.mode1v3
12-
*.mode2v3
13-
!default.mode2v3
14-
*.perspectivev3
15-
!default.perspectivev3
16-
xcuserdata
17-
*.xccheckout
18-
*.moved-aside
19-
DerivedData
20-
*.hmap
21-
*.ipa
22-
*.xcuserstate
23-
ios/.xcode.env.local
24-
25-
# Android/IntelliJ
26-
#
27-
build/
28-
.idea
29-
.gradle
30-
local.properties
31-
*.iml
32-
*.hprof
33-
.cxx/
34-
*.keystore
35-
!debug.keystore
36-
37-
# node.js
38-
#
3+
# dependencies
394
node_modules/
40-
npm-debug.log
41-
yarn-error.log
425

43-
# fastlane
44-
#
45-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46-
# screenshots whenever they are needed.
47-
# For more information about the recommended setup visit:
48-
# https://docs.fastlane.tools/best-practices/source-control/
6+
# Expo
7+
.expo/
8+
dist/
9+
web-build/
10+
expo-env.d.ts
11+
12+
# Native
13+
*.orig.*
14+
*.jks
15+
*.p8
16+
*.p12
17+
*.key
18+
*.mobileprovision
19+
20+
# Metro
21+
.metro-health-check*
4922

50-
**/fastlane/report.xml
51-
**/fastlane/Preview.html
52-
**/fastlane/screenshots
53-
**/fastlane/test_output
23+
# debug
24+
npm-debug.*
25+
yarn-debug.*
26+
yarn-error.*
5427

55-
# Bundle artifact
56-
*.jsbundle
28+
# macOS
29+
.DS_Store
30+
*.pem
5731

58-
# Ruby / CocoaPods
59-
/ios/Pods/
60-
/vendor/bundle/
32+
# local env files
33+
.env*.local
6134

62-
# Temporary files created by Metro to check the health of the file watcher
63-
.metro-health-check*
35+
# typescript
36+
*.tsbuildinfo

test/.prettierrc.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

test/.watchmanconfig

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/App.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { StatusBar } from 'expo-status-bar';
2+
import { StyleSheet, Text, View } from 'react-native';
3+
4+
export default function App() {
5+
return (
6+
<View style={styles.container}>
7+
<Text>Open up App.js to start working on your app!</Text>
8+
<StatusBar style="auto" />
9+
</View>
10+
);
11+
}
12+
13+
const styles = StyleSheet.create({
14+
container: {
15+
flex: 1,
16+
backgroundColor: '#fff',
17+
alignItems: 'center',
18+
justifyContent: 'center',
19+
},
20+
});

test/App.tsx

Lines changed: 0 additions & 118 deletions
This file was deleted.

test/Gemfile

Lines changed: 0 additions & 6 deletions
This file was deleted.

test/__tests__/App-test.tsx

Lines changed: 0 additions & 14 deletions
This file was deleted.

test/_bundle/config

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/_ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)