lucy-cli 2.0.0-alpha.7 → 2.0.0-alpha.9
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/files/expo/metro.config.js +0 -1
- package/package.json +1 -1
- package/src/init.ts +1 -1
- package/files/expo/.env +0 -1
@@ -27,7 +27,6 @@ const config = (() => {
|
|
27
27
|
// config.resolver.unstable_conditionsByPlatform = ['ios', 'android']
|
28
28
|
config.resolver.resolveRequest = (context, moduleName, platform) => {
|
29
29
|
if (platform === 'web') {
|
30
|
-
console.log('Resolving for web:', moduleName);
|
31
30
|
// Check if the module name is in our alias map
|
32
31
|
const alias = ALIASES_WEB[moduleName];
|
33
32
|
if (alias) {
|
package/package.json
CHANGED
package/src/init.ts
CHANGED
@@ -325,7 +325,7 @@ const init_expo = () => {
|
|
325
325
|
"reset": "tsx ./scripts/reset-project.ts",
|
326
326
|
"format": "prettier --write \"./*.json\" \"**/*.{ts,tsx,md,json,jsonc,json5}\"",
|
327
327
|
"prebuild": "expo prebuild",
|
328
|
-
"pods": "
|
328
|
+
"pods": "npx pod-install",
|
329
329
|
"build:dev": "eas build --local --profile development",
|
330
330
|
"build:sim": "eas build --local --profile ios-simulator",
|
331
331
|
"build:prev": "eas build --local --profile preview",
|
package/files/expo/.env
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
EXPO_PUBLIC_WIX_CLIENT_ID=
|