expo-template-blank-typescript 48.0.17 → 49.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/gitignore +23 -5
  2. package/package.json +4 -4
package/gitignore CHANGED
@@ -1,17 +1,35 @@
1
+ # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2
+
3
+ # dependencies
1
4
  node_modules/
5
+
6
+ # Expo
2
7
  .expo/
3
8
  dist/
4
- npm-debug.*
9
+ web-build/
10
+
11
+ # Native
12
+ *.orig.*
5
13
  *.jks
6
14
  *.p8
7
15
  *.p12
8
16
  *.key
9
17
  *.mobileprovision
10
- *.orig.*
11
- web-build/
18
+
19
+ # Metro
20
+ .metro-health-check*
21
+
22
+ # debug
23
+ npm-debug.*
24
+ yarn-debug.*
25
+ yarn-error.*
12
26
 
13
27
  # macOS
14
28
  .DS_Store
29
+ *.pem
15
30
 
16
- # Temporary files created by Metro to check the health of the file watcher
17
- .metro-health-check*
31
+ # local env files
32
+ .env*.local
33
+
34
+ # typescript
35
+ *.tsbuildinfo
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-template-blank-typescript",
3
3
  "description": "The Blank project template includes the minimum dependencies to run and an empty root component.",
4
- "version": "48.0.17",
4
+ "version": "49.0.0",
5
5
  "main": "node_modules/expo/AppEntry.js",
6
6
  "scripts": {
7
7
  "start": "expo start",
@@ -10,10 +10,10 @@
10
10
  "web": "expo start --web"
11
11
  },
12
12
  "dependencies": {
13
- "expo": "~48.0.18",
14
- "expo-status-bar": "~1.4.4",
13
+ "expo": "~49.0.0-alpha.5",
14
+ "expo-status-bar": "~1.6.0",
15
15
  "react": "18.2.0",
16
- "react-native": "0.71.8"
16
+ "react-native": "0.72.0-rc.6"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@babel/core": "^7.20.0",