From 65bfcb9087aa4dbc7adb60e060a246714ec3f9cd Mon Sep 17 00:00:00 2001 From: Sishir P Date: Wed, 22 Jul 2026 13:07:53 -0400 Subject: [PATCH] chore: root npm start/mobile scripts launch Expo from packages/mobile Running npx expo start at the monorepo root silently serves a phantom app (no app config there, default AppEntry requires ../../App which does not exist), Expo Go fails with an App resolution error, and the CLI mutates the root tsconfig.json. This has now happened twice. npm start or npm run mobile at the root now delegates to the mobile workspace with the project's standard port 8083, so the path of least resistance is the correct one. --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 01c8a6bf..b10f4e81 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,8 @@ ], "scripts": { "postinstall": "patch-package", + "mobile": "npm run start --workspace=@rayhealth/mobile -- --port 8083", + "start": "npm run mobile", "build": "turbo build", "test": "turbo test", "lint": "turbo lint",