From ce036b766fad2f3cc0bfd7131d02cc83a5a26ab2 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 19 May 2025 11:36:44 +0200 Subject: [PATCH 1/2] chore(samples): Add eas-update-configure script --- samples/expo/app.json | 7 ++----- samples/expo/package.json | 3 ++- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/samples/expo/app.json b/samples/expo/app.json index e64439d34f..c087c82477 100644 --- a/samples/expo/app.json +++ b/samples/expo/app.json @@ -81,11 +81,8 @@ "default": "development" } }, - "eas": { - "projectId": "00000000-0000-0000-0000-000000000000" - } + "eas": {} }, - "owner": "__OWNER__", "runtimeVersion": { "policy": "appVersion" }, @@ -93,4 +90,4 @@ "url": "https://u.expo.dev/00000000-0000-0000-0000-000000000000" } } -} \ No newline at end of file +} diff --git a/samples/expo/package.json b/samples/expo/package.json index 79ad21f671..8818461eb7 100644 --- a/samples/expo/package.json +++ b/samples/expo/package.json @@ -14,7 +14,8 @@ "export:web": "expo export --dump-sourcemap --clear --platform web", "prebuild": "expo prebuild --clean --no-install", "set-version": "npx react-native-version --skip-tag --never-amend", - "eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build" + "eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build", + "eas-update-configure": "eas update:configure" }, "dependencies": { "@sentry/react-native": "6.14.0", From 9facb75d5ec7d70d58407f64f3599303acfb3565 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 19 May 2025 12:53:16 +0200 Subject: [PATCH 2/2] add more useful scripts --- samples/expo/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/expo/package.json b/samples/expo/package.json index 8818461eb7..33cf1db4f3 100644 --- a/samples/expo/package.json +++ b/samples/expo/package.json @@ -15,7 +15,9 @@ "prebuild": "expo prebuild --clean --no-install", "set-version": "npx react-native-version --skip-tag --never-amend", "eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build", - "eas-update-configure": "eas update:configure" + "eas-update-configure": "eas update:configure", + "eas-update-publish-development": "eas update --channel development --message 'Development update'", + "eas-build-development-android": "eas build --profile development --platform android" }, "dependencies": { "@sentry/react-native": "6.14.0",