expo-bbase 1.4.1 → 1.5.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.
- package/dist/index.js +20 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2406,7 +2406,7 @@ var flashlistModule = {
|
|
|
2406
2406
|
description: "@shopify/flash-list",
|
|
2407
2407
|
defaultChecked: false,
|
|
2408
2408
|
dependencies: {
|
|
2409
|
-
"@shopify/flash-list": "
|
|
2409
|
+
"@shopify/flash-list": "2.0.2"
|
|
2410
2410
|
},
|
|
2411
2411
|
devDependencies: {},
|
|
2412
2412
|
files: [
|
|
@@ -4161,21 +4161,33 @@ function generateBasePackageJson(projectName) {
|
|
|
4161
4161
|
main: "expo-router/entry",
|
|
4162
4162
|
scripts: {
|
|
4163
4163
|
start: "expo start",
|
|
4164
|
+
"reset-project": "node ./scripts/reset-project.js",
|
|
4164
4165
|
android: "expo start --android",
|
|
4165
4166
|
ios: "expo start --ios",
|
|
4166
4167
|
web: "expo start --web",
|
|
4167
|
-
lint: "
|
|
4168
|
+
lint: "expo lint"
|
|
4168
4169
|
},
|
|
4169
4170
|
dependencies: {
|
|
4170
|
-
expo: "~54.0.
|
|
4171
|
+
expo: "~54.0.33",
|
|
4171
4172
|
"expo-router": "~6.0.23",
|
|
4172
4173
|
"expo-linking": "~8.0.12",
|
|
4173
4174
|
"expo-constants": "~18.0.13",
|
|
4174
4175
|
"expo-status-bar": "~3.0.9",
|
|
4175
4176
|
"expo-splash-screen": "~31.0.13",
|
|
4176
4177
|
"expo-font": "~14.0.11",
|
|
4178
|
+
"expo-haptics": "~15.0.8",
|
|
4179
|
+
"expo-image": "~3.0.11",
|
|
4180
|
+
"expo-symbols": "~1.0.8",
|
|
4181
|
+
"expo-system-ui": "~6.0.9",
|
|
4182
|
+
"expo-web-browser": "~15.0.10",
|
|
4177
4183
|
react: "19.1.0",
|
|
4184
|
+
"react-dom": "19.1.0",
|
|
4178
4185
|
"react-native": "0.81.5",
|
|
4186
|
+
"react-native-web": "~0.21.0",
|
|
4187
|
+
"@expo/vector-icons": "^15.0.3",
|
|
4188
|
+
"@react-navigation/bottom-tabs": "^7.4.0",
|
|
4189
|
+
"@react-navigation/elements": "^2.6.3",
|
|
4190
|
+
"@react-navigation/native": "^7.1.8",
|
|
4179
4191
|
"react-native-safe-area-context": "~5.6.0",
|
|
4180
4192
|
"react-native-screens": "~4.16.0",
|
|
4181
4193
|
"react-native-reanimated": "~4.1.1",
|
|
@@ -4183,18 +4195,20 @@ function generateBasePackageJson(projectName) {
|
|
|
4183
4195
|
"react-native-gesture-handler": "~2.28.0",
|
|
4184
4196
|
nativewind: "^4.1.0",
|
|
4185
4197
|
tailwindcss: "^3.4.0",
|
|
4186
|
-
"react-native-svg": "
|
|
4198
|
+
"react-native-svg": "15.12.1"
|
|
4187
4199
|
},
|
|
4188
4200
|
devDependencies: {
|
|
4189
4201
|
"@types/react": "~19.1.0",
|
|
4190
|
-
typescript: "~5.9.2"
|
|
4202
|
+
typescript: "~5.9.2",
|
|
4203
|
+
eslint: "^9.25.0",
|
|
4204
|
+
"eslint-config-expo": "~10.0.0"
|
|
4191
4205
|
}
|
|
4192
4206
|
};
|
|
4193
4207
|
}
|
|
4194
4208
|
|
|
4195
4209
|
// src/index.ts
|
|
4196
4210
|
var import_execa = require("execa");
|
|
4197
|
-
var CLI_VERSION = "1.
|
|
4211
|
+
var CLI_VERSION = "1.5.0";
|
|
4198
4212
|
var CONFIG_FILE = ".expo-bbase.json";
|
|
4199
4213
|
async function run() {
|
|
4200
4214
|
const program = new import_commander.Command();
|