From e45c0605bb2fe8ca434c0b5fbd6e901e5cf0e26c Mon Sep 17 00:00:00 2001 From: kdletters Date: Sun, 21 Jun 2026 19:44:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E7=B4=A7=E7=A7=BB=E5=8A=A8=E5=A3=B3?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E9=85=8D=E7=BD=AE=E8=BE=B9=E7=95=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 禁止 EAS 构建 profile 写入 runtimeVersion 保持移动壳可分发构建不提前接入 OTA 语义 --- apps/mobile-shell/scripts/check-eas-build-config.mjs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/mobile-shell/scripts/check-eas-build-config.mjs b/apps/mobile-shell/scripts/check-eas-build-config.mjs index a89578a79..596eeee94 100644 --- a/apps/mobile-shell/scripts/check-eas-build-config.mjs +++ b/apps/mobile-shell/scripts/check-eas-build-config.mjs @@ -137,7 +137,13 @@ for (const [profileName, profile] of Object.entries(easConfig.build)) { assertObject(profile, `EAS ${profileName} profile`); assertNoKeys( profile, - ['credentialsSource', 'autoIncrement', 'submit', 'releaseChannel'], + [ + 'credentialsSource', + 'autoIncrement', + 'submit', + 'runtimeVersion', + 'releaseChannel', + ], `EAS ${profileName} profile`, ); }