expo-template-tabs 52.0.24 → 52.0.25

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 +36 -0
  2. package/package.json +6 -6
package/gitignore ADDED
@@ -0,0 +1,36 @@
1
+ # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2
+
3
+ # dependencies
4
+ node_modules/
5
+
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*
22
+
23
+ # debug
24
+ npm-debug.*
25
+ yarn-debug.*
26
+ yarn-error.*
27
+
28
+ # macOS
29
+ .DS_Store
30
+ *.pem
31
+
32
+ # local env files
33
+ .env*.local
34
+
35
+ # typescript
36
+ *.tsbuildinfo
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "expo-router/entry",
4
4
  "description": "The Tab Navigation project template includes several example screens.",
5
5
  "license": "0BSD",
6
- "version": "52.0.24",
6
+ "version": "52.0.25",
7
7
  "scripts": {
8
8
  "start": "expo start",
9
9
  "android": "expo start --android",
@@ -17,11 +17,11 @@
17
17
  "dependencies": {
18
18
  "@expo/vector-icons": "^14.0.2",
19
19
  "@react-navigation/native": "^7.0.0",
20
- "expo": "~52.0.0",
20
+ "expo": "~52.0.2",
21
21
  "expo-font": "~13.0.1",
22
22
  "expo-linking": "~7.0.2",
23
- "expo-router": "~4.0.0",
24
- "expo-splash-screen": "~0.29.5",
23
+ "expo-router": "~4.0.2",
24
+ "expo-splash-screen": "~0.29.6",
25
25
  "expo-status-bar": "~2.0.0",
26
26
  "expo-system-ui": "~4.0.2",
27
27
  "expo-web-browser": "~14.0.0",
@@ -30,14 +30,14 @@
30
30
  "react-native": "0.76.1",
31
31
  "react-native-reanimated": "~3.16.1",
32
32
  "react-native-safe-area-context": "4.12.0",
33
- "react-native-screens": "^4.0.0",
33
+ "react-native-screens": "~4.0.0",
34
34
  "react-native-web": "~0.19.13"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@babel/core": "^7.25.2",
38
38
  "@types/react": "~18.3.12",
39
39
  "jest": "^29.2.1",
40
- "jest-expo": "~52.0.0-preview.4",
40
+ "jest-expo": "~52.0.0",
41
41
  "react-test-renderer": "18.3.1",
42
42
  "typescript": "~5.3.3"
43
43
  }