@mediacubeco/expo-template-fsd 2.0.0 → 2.0.1
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.
- package/README.md +18 -17
- package/package.json +18 -17
- package/skills-lock.json +1 -1
- package/src/shared/lib/theme/theme.provider.tsx +1 -1
package/README.md
CHANGED
|
@@ -25,30 +25,31 @@ This project is built on top of the `@mediacubeco/expo-template-fsd` template.
|
|
|
25
25
|
|
|
26
26
|
## Quick Start
|
|
27
27
|
|
|
28
|
-
Run the project from the `templates/expo-template-fsd` directory:
|
|
29
|
-
|
|
30
28
|
```bash
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
npm install
|
|
30
|
+
|
|
31
|
+
npm run postinstall
|
|
32
|
+
|
|
33
|
+
npm run start
|
|
33
34
|
```
|
|
34
35
|
|
|
35
36
|
Then choose a target platform:
|
|
36
37
|
|
|
37
38
|
```bash
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
npm run android
|
|
40
|
+
npm run ios
|
|
41
|
+
npm run web
|
|
41
42
|
```
|
|
42
43
|
|
|
43
44
|
## Scripts
|
|
44
45
|
|
|
45
|
-
- `
|
|
46
|
-
- `
|
|
47
|
-
- `
|
|
48
|
-
- `
|
|
49
|
-
- `
|
|
50
|
-
- `
|
|
51
|
-
- `
|
|
52
|
-
- `
|
|
53
|
-
- `
|
|
54
|
-
- `
|
|
46
|
+
- `npm run prebuild` - Generates native projects with Expo prebuild.
|
|
47
|
+
- `npm run start` - Starts the Expo development server.
|
|
48
|
+
- `npm run android` - Starts the app in Android mode.
|
|
49
|
+
- `npm run android:device` - Runs the Android app on a connected physical device.
|
|
50
|
+
- `npm run ios` - Starts the app in iOS mode.
|
|
51
|
+
- `npm run ios:device` - Runs the iOS app on a connected physical device.
|
|
52
|
+
- `npm run web` - Starts the app in web mode.
|
|
53
|
+
- `npm run format` - Formats the codebase with Prettier.
|
|
54
|
+
- `npm run lint` - Runs ESLint checks.
|
|
55
|
+
- `npm run type` - Runs TypeScript type checking.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"name": "@mediacubeco/expo-template-fsd",
|
|
5
5
|
"description": "Application by Mediacube developers",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"expo-system-ui": "~56.0.5",
|
|
30
30
|
"expo-web-browser": "~56.0.5",
|
|
31
31
|
"i18next": "^26.0.5",
|
|
32
|
-
"react": "
|
|
33
|
-
"react-dom": "
|
|
32
|
+
"react": "19.2.3",
|
|
33
|
+
"react-dom": "19.2.3",
|
|
34
34
|
"react-i18next": "^17.0.3",
|
|
35
|
-
"react-native": "
|
|
35
|
+
"react-native": "0.85.3",
|
|
36
36
|
"react-native-gesture-handler": "~2.31.2",
|
|
37
37
|
"react-native-keyboard-controller": "1.21.6",
|
|
38
38
|
"react-native-reanimated": "4.3.1",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"react-native-svg": "15.15.4",
|
|
42
42
|
"react-native-web": "^0.21.0",
|
|
43
43
|
"react-native-worklets": "0.8.3",
|
|
44
|
-
"@mediacubeco/base
|
|
45
|
-
"@mediacubeco/base": "2.0.
|
|
46
|
-
"@mediacubeco/base-react
|
|
44
|
+
"@mediacubeco/base": "2.0.1",
|
|
45
|
+
"@mediacubeco/base-react-native": "2.0.1",
|
|
46
|
+
"@mediacubeco/base-react": "2.0.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/react": "^19.2.0",
|
|
@@ -52,18 +52,19 @@
|
|
|
52
52
|
"husky": "^9.1.7",
|
|
53
53
|
"prettier": "^3.8.1",
|
|
54
54
|
"typescript": "^6.0.3",
|
|
55
|
-
"@mediacubeco/eslint-config-fsd": "2.0.
|
|
56
|
-
"@mediacubeco/
|
|
57
|
-
"@mediacubeco/eslint-config-react": "2.0.
|
|
58
|
-
"@mediacubeco/prettier-config": "2.0.
|
|
59
|
-
"@mediacubeco/
|
|
60
|
-
"@mediacubeco/
|
|
61
|
-
"@mediacubeco/typescript-config-
|
|
62
|
-
"@mediacubeco/
|
|
63
|
-
"@mediacubeco/typescript-config": "2.0.
|
|
64
|
-
"@mediacubeco/
|
|
55
|
+
"@mediacubeco/eslint-config-fsd": "2.0.1",
|
|
56
|
+
"@mediacubeco/prettier-config": "2.0.1",
|
|
57
|
+
"@mediacubeco/eslint-config-react-native": "2.0.1",
|
|
58
|
+
"@mediacubeco/prettier-config-fsd": "2.0.1",
|
|
59
|
+
"@mediacubeco/eslint-config-react": "2.0.1",
|
|
60
|
+
"@mediacubeco/eslint-config": "2.0.1",
|
|
61
|
+
"@mediacubeco/typescript-config-fsd": "2.0.1",
|
|
62
|
+
"@mediacubeco/typescript-config-react": "2.0.1",
|
|
63
|
+
"@mediacubeco/typescript-config": "2.0.1",
|
|
64
|
+
"@mediacubeco/typescript-config-react-native": "2.0.1"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
|
+
"postinstall": "npx husky && npx skills update",
|
|
67
68
|
"prebuild": "expo prebuild",
|
|
68
69
|
"start": "expo start",
|
|
69
70
|
"android": "expo start --android",
|
package/skills-lock.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"source": "vercel-labs/agent-skills",
|
|
24
24
|
"sourceType": "github",
|
|
25
25
|
"skillPath": "skills/react-native-skills/SKILL.md",
|
|
26
|
-
"computedHash": "
|
|
26
|
+
"computedHash": "2e9088a7333666d8c2833b8ff58bd51b955501c42b4c7244f72b4cbf22dafcc4"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Platform } from '@mediacubeco/react-native
|
|
1
|
+
import { Platform } from '@mediacubeco/base-react-native'
|
|
2
2
|
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
3
3
|
import { Appearance, StatusBar, useColorScheme } from 'react-native'
|
|
4
4
|
import { themeStorage } from './utils'
|