@expo/cli 54.0.2 → 54.0.3-canary-20250912-b5ce2a8

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/build/bin/cli CHANGED
@@ -123,7 +123,7 @@ const args = (0, _arg().default)({
123
123
  });
124
124
  if (args['--version']) {
125
125
  // Version is added in the build script.
126
- console.log("54.0.2");
126
+ console.log("54.0.3-canary-20250912-b5ce2a8");
127
127
  process.exit(0);
128
128
  }
129
129
  if (args['--non-interactive']) {
@@ -130,11 +130,13 @@ class WebSupportProjectPrerequisite extends _Prerequisite.ProjectPrerequisite {
130
130
  dev: true
131
131
  });
132
132
  } else if (bundler === 'metro') {
133
- requiredPackages.push({
134
- file: '@expo/metro-runtime/package.json',
135
- pkg: '@expo/metro-runtime'
136
- });
137
- }
133
+ // NOTE(@kitten): We used to require `@expo/metro-runtime` here but part of what we required from
134
+ // it has moved out of that package (async-require). Hence, this isn't needed anymore, and if
135
+ // a user has `expo-router`, this is fulfilled anyway.
136
+ /*requiredPackages.push({
137
+ file: '@expo/metro-runtime/package.json',
138
+ pkg: '@expo/metro-runtime',
139
+ });*/ }
138
140
  try {
139
141
  return await (0, _ensureDependenciesAsync.ensureDependenciesAsync)(this.projectRoot, {
140
142
  // This never seems to work when prompting, installing, and running -- instead just inform the user to run the install command and try again.
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/start/doctor/web/WebSupportProjectPrerequisite.ts"],"sourcesContent":["import {\n AppJSONConfig,\n ExpoConfig,\n getConfig,\n getProjectConfigDescriptionWithPaths,\n ProjectConfig,\n} from '@expo/config';\nimport chalk from 'chalk';\n\nimport * as Log from '../../../log';\nimport { env } from '../../../utils/env';\nimport { getPlatformBundlers } from '../../server/platformBundlers';\nimport { PrerequisiteCommandError, ProjectPrerequisite } from '../Prerequisite';\nimport { ensureDependenciesAsync } from '../dependencies/ensureDependenciesAsync';\nimport { ResolvedPackage } from '../dependencies/getMissingPackages';\n\nconst debug = require('debug')('expo:doctor:webSupport') as typeof console.log;\n\n/** Ensure the project has the required web support settings. */\nexport class WebSupportProjectPrerequisite extends ProjectPrerequisite {\n /** Ensure a project that hasn't explicitly disabled web support has all the required packages for running in the browser. */\n async assertImplementation(): Promise<void> {\n if (env.EXPO_NO_WEB_SETUP) {\n Log.warn('Skipping web setup: EXPO_NO_WEB_SETUP is enabled.');\n return;\n }\n debug('Ensuring web support is setup');\n\n const result = await this._shouldSetupWebSupportAsync();\n\n // Ensure web packages are installed\n await this._ensureWebDependenciesInstalledAsync({ exp: result.exp });\n }\n\n /** Exposed for testing. */\n async _shouldSetupWebSupportAsync(): Promise<ProjectConfig> {\n const config = getConfig(this.projectRoot);\n\n // Detect if the 'web' string is purposefully missing from the platforms array.\n if (isWebPlatformExcluded(config.rootConfig)) {\n // Get exact config description with paths.\n const configName = getProjectConfigDescriptionWithPaths(this.projectRoot, config);\n throw new PrerequisiteCommandError(\n 'WEB_SUPPORT',\n chalk`Skipping web setup: {bold \"web\"} is not included in the project ${configName} {bold \"platforms\"} array.`\n );\n }\n\n return config;\n }\n\n /** Exposed for testing. */\n async _ensureWebDependenciesInstalledAsync({ exp }: { exp: ExpoConfig }): Promise<boolean> {\n const requiredPackages: ResolvedPackage[] = [\n { file: 'react-dom/package.json', pkg: 'react-dom' },\n ];\n if (!env.EXPO_NO_REACT_NATIVE_WEB) {\n // use react-native-web/package.json to skip node module cache issues when the user installs\n // the package and attempts to resolve the module in the same process.\n requiredPackages.push({ file: 'react-native-web/package.json', pkg: 'react-native-web' });\n }\n\n const bundler = getPlatformBundlers(this.projectRoot, exp).web;\n // Only include webpack-config if bundler is webpack.\n if (bundler === 'webpack') {\n requiredPackages.push(\n // `webpack` and `webpack-dev-server` should be installed in the `@expo/webpack-config`\n {\n file: '@expo/webpack-config/package.json',\n pkg: '@expo/webpack-config',\n dev: true,\n }\n );\n } else if (bundler === 'metro') {\n requiredPackages.push({\n file: '@expo/metro-runtime/package.json',\n pkg: '@expo/metro-runtime',\n });\n }\n\n try {\n return await ensureDependenciesAsync(this.projectRoot, {\n // This never seems to work when prompting, installing, and running -- instead just inform the user to run the install command and try again.\n skipPrompt: true,\n isProjectMutable: false,\n exp,\n installMessage: `It looks like you're trying to use web support but don't have the required dependencies installed.`,\n warningMessage: chalk`If you're not using web, please ensure you remove the {bold \"web\"} string from the platforms array in the project Expo config.`,\n requiredPackages,\n });\n } catch (error) {\n // Reset the cached check so we can re-run the check if the user re-runs the command by pressing 'w' in the Terminal UI.\n this.resetAssertion();\n throw error;\n }\n }\n}\n\n/** Return `true` if the `web` platform is purposefully excluded from the project Expo config. */\nexport function isWebPlatformExcluded(rootConfig: AppJSONConfig): boolean {\n // Detect if the 'web' string is purposefully missing from the platforms array.\n const isWebExcluded =\n Array.isArray(rootConfig?.expo?.platforms) &&\n !!rootConfig.expo?.platforms.length &&\n !rootConfig.expo?.platforms.includes('web');\n return isWebExcluded;\n}\n"],"names":["WebSupportProjectPrerequisite","isWebPlatformExcluded","debug","require","ProjectPrerequisite","assertImplementation","env","EXPO_NO_WEB_SETUP","Log","warn","result","_shouldSetupWebSupportAsync","_ensureWebDependenciesInstalledAsync","exp","config","getConfig","projectRoot","rootConfig","configName","getProjectConfigDescriptionWithPaths","PrerequisiteCommandError","chalk","requiredPackages","file","pkg","EXPO_NO_REACT_NATIVE_WEB","push","bundler","getPlatformBundlers","web","dev","ensureDependenciesAsync","skipPrompt","isProjectMutable","installMessage","warningMessage","error","resetAssertion","isWebExcluded","Array","isArray","expo","platforms","length","includes"],"mappings":";;;;;;;;;;;IAmBaA,6BAA6B;eAA7BA;;IAgFGC,qBAAqB;eAArBA;;;;yBA7FT;;;;;;;gEACW;;;;;;6DAEG;qBACD;kCACgB;8BAC0B;yCACtB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGxC,MAAMC,QAAQC,QAAQ,SAAS;AAGxB,MAAMH,sCAAsCI,iCAAmB;IACpE,2HAA2H,GAC3H,MAAMC,uBAAsC;QAC1C,IAAIC,QAAG,CAACC,iBAAiB,EAAE;YACzBC,KAAIC,IAAI,CAAC;YACT;QACF;QACAP,MAAM;QAEN,MAAMQ,SAAS,MAAM,IAAI,CAACC,2BAA2B;QAErD,oCAAoC;QACpC,MAAM,IAAI,CAACC,oCAAoC,CAAC;YAAEC,KAAKH,OAAOG,GAAG;QAAC;IACpE;IAEA,yBAAyB,GACzB,MAAMF,8BAAsD;QAC1D,MAAMG,SAASC,IAAAA,mBAAS,EAAC,IAAI,CAACC,WAAW;QAEzC,+EAA+E;QAC/E,IAAIf,sBAAsBa,OAAOG,UAAU,GAAG;YAC5C,2CAA2C;YAC3C,MAAMC,aAAaC,IAAAA,8CAAoC,EAAC,IAAI,CAACH,WAAW,EAAEF;YAC1E,MAAM,IAAIM,sCAAwB,CAChC,eACAC,IAAAA,gBAAK,CAAA,CAAC,gEAAgE,EAAEH,WAAW,0BAA0B,CAAC;QAElH;QAEA,OAAOJ;IACT;IAEA,yBAAyB,GACzB,MAAMF,qCAAqC,EAAEC,GAAG,EAAuB,EAAoB;QACzF,MAAMS,mBAAsC;YAC1C;gBAAEC,MAAM;gBAA0BC,KAAK;YAAY;SACpD;QACD,IAAI,CAAClB,QAAG,CAACmB,wBAAwB,EAAE;YACjC,4FAA4F;YAC5F,sEAAsE;YACtEH,iBAAiBI,IAAI,CAAC;gBAAEH,MAAM;gBAAiCC,KAAK;YAAmB;QACzF;QAEA,MAAMG,UAAUC,IAAAA,qCAAmB,EAAC,IAAI,CAACZ,WAAW,EAAEH,KAAKgB,GAAG;QAC9D,qDAAqD;QACrD,IAAIF,YAAY,WAAW;YACzBL,iBAAiBI,IAAI,CACnB,uFAAuF;YACvF;gBACEH,MAAM;gBACNC,KAAK;gBACLM,KAAK;YACP;QAEJ,OAAO,IAAIH,YAAY,SAAS;YAC9BL,iBAAiBI,IAAI,CAAC;gBACpBH,MAAM;gBACNC,KAAK;YACP;QACF;QAEA,IAAI;YACF,OAAO,MAAMO,IAAAA,gDAAuB,EAAC,IAAI,CAACf,WAAW,EAAE;gBACrD,6IAA6I;gBAC7IgB,YAAY;gBACZC,kBAAkB;gBAClBpB;gBACAqB,gBAAgB,CAAC,kGAAkG,CAAC;gBACpHC,gBAAgBd,IAAAA,gBAAK,CAAA,CAAC,8HAA8H,CAAC;gBACrJC;YACF;QACF,EAAE,OAAOc,OAAO;YACd,wHAAwH;YACxH,IAAI,CAACC,cAAc;YACnB,MAAMD;QACR;IACF;AACF;AAGO,SAASnC,sBAAsBgB,UAAyB;QAG7CA,kBACZA,mBACDA;IAJH,+EAA+E;IAC/E,MAAMqB,gBACJC,MAAMC,OAAO,CAACvB,+BAAAA,mBAAAA,WAAYwB,IAAI,qBAAhBxB,iBAAkByB,SAAS,KACzC,CAAC,GAACzB,oBAAAA,WAAWwB,IAAI,qBAAfxB,kBAAiByB,SAAS,CAACC,MAAM,KACnC,GAAC1B,oBAAAA,WAAWwB,IAAI,qBAAfxB,kBAAiByB,SAAS,CAACE,QAAQ,CAAC;IACvC,OAAON;AACT"}
1
+ {"version":3,"sources":["../../../../../src/start/doctor/web/WebSupportProjectPrerequisite.ts"],"sourcesContent":["import {\n AppJSONConfig,\n ExpoConfig,\n getConfig,\n getProjectConfigDescriptionWithPaths,\n ProjectConfig,\n} from '@expo/config';\nimport chalk from 'chalk';\n\nimport * as Log from '../../../log';\nimport { env } from '../../../utils/env';\nimport { getPlatformBundlers } from '../../server/platformBundlers';\nimport { PrerequisiteCommandError, ProjectPrerequisite } from '../Prerequisite';\nimport { ensureDependenciesAsync } from '../dependencies/ensureDependenciesAsync';\nimport { ResolvedPackage } from '../dependencies/getMissingPackages';\n\nconst debug = require('debug')('expo:doctor:webSupport') as typeof console.log;\n\n/** Ensure the project has the required web support settings. */\nexport class WebSupportProjectPrerequisite extends ProjectPrerequisite {\n /** Ensure a project that hasn't explicitly disabled web support has all the required packages for running in the browser. */\n async assertImplementation(): Promise<void> {\n if (env.EXPO_NO_WEB_SETUP) {\n Log.warn('Skipping web setup: EXPO_NO_WEB_SETUP is enabled.');\n return;\n }\n debug('Ensuring web support is setup');\n\n const result = await this._shouldSetupWebSupportAsync();\n\n // Ensure web packages are installed\n await this._ensureWebDependenciesInstalledAsync({ exp: result.exp });\n }\n\n /** Exposed for testing. */\n async _shouldSetupWebSupportAsync(): Promise<ProjectConfig> {\n const config = getConfig(this.projectRoot);\n\n // Detect if the 'web' string is purposefully missing from the platforms array.\n if (isWebPlatformExcluded(config.rootConfig)) {\n // Get exact config description with paths.\n const configName = getProjectConfigDescriptionWithPaths(this.projectRoot, config);\n throw new PrerequisiteCommandError(\n 'WEB_SUPPORT',\n chalk`Skipping web setup: {bold \"web\"} is not included in the project ${configName} {bold \"platforms\"} array.`\n );\n }\n\n return config;\n }\n\n /** Exposed for testing. */\n async _ensureWebDependenciesInstalledAsync({ exp }: { exp: ExpoConfig }): Promise<boolean> {\n const requiredPackages: ResolvedPackage[] = [\n { file: 'react-dom/package.json', pkg: 'react-dom' },\n ];\n if (!env.EXPO_NO_REACT_NATIVE_WEB) {\n // use react-native-web/package.json to skip node module cache issues when the user installs\n // the package and attempts to resolve the module in the same process.\n requiredPackages.push({ file: 'react-native-web/package.json', pkg: 'react-native-web' });\n }\n\n const bundler = getPlatformBundlers(this.projectRoot, exp).web;\n // Only include webpack-config if bundler is webpack.\n if (bundler === 'webpack') {\n requiredPackages.push(\n // `webpack` and `webpack-dev-server` should be installed in the `@expo/webpack-config`\n {\n file: '@expo/webpack-config/package.json',\n pkg: '@expo/webpack-config',\n dev: true,\n }\n );\n } else if (bundler === 'metro') {\n // NOTE(@kitten): We used to require `@expo/metro-runtime` here but part of what we required from\n // it has moved out of that package (async-require). Hence, this isn't needed anymore, and if\n // a user has `expo-router`, this is fulfilled anyway.\n /*requiredPackages.push({\n file: '@expo/metro-runtime/package.json',\n pkg: '@expo/metro-runtime',\n });*/\n }\n\n try {\n return await ensureDependenciesAsync(this.projectRoot, {\n // This never seems to work when prompting, installing, and running -- instead just inform the user to run the install command and try again.\n skipPrompt: true,\n isProjectMutable: false,\n exp,\n installMessage: `It looks like you're trying to use web support but don't have the required dependencies installed.`,\n warningMessage: chalk`If you're not using web, please ensure you remove the {bold \"web\"} string from the platforms array in the project Expo config.`,\n requiredPackages,\n });\n } catch (error) {\n // Reset the cached check so we can re-run the check if the user re-runs the command by pressing 'w' in the Terminal UI.\n this.resetAssertion();\n throw error;\n }\n }\n}\n\n/** Return `true` if the `web` platform is purposefully excluded from the project Expo config. */\nexport function isWebPlatformExcluded(rootConfig: AppJSONConfig): boolean {\n // Detect if the 'web' string is purposefully missing from the platforms array.\n const isWebExcluded =\n Array.isArray(rootConfig?.expo?.platforms) &&\n !!rootConfig.expo?.platforms.length &&\n !rootConfig.expo?.platforms.includes('web');\n return isWebExcluded;\n}\n"],"names":["WebSupportProjectPrerequisite","isWebPlatformExcluded","debug","require","ProjectPrerequisite","assertImplementation","env","EXPO_NO_WEB_SETUP","Log","warn","result","_shouldSetupWebSupportAsync","_ensureWebDependenciesInstalledAsync","exp","config","getConfig","projectRoot","rootConfig","configName","getProjectConfigDescriptionWithPaths","PrerequisiteCommandError","chalk","requiredPackages","file","pkg","EXPO_NO_REACT_NATIVE_WEB","push","bundler","getPlatformBundlers","web","dev","ensureDependenciesAsync","skipPrompt","isProjectMutable","installMessage","warningMessage","error","resetAssertion","isWebExcluded","Array","isArray","expo","platforms","length","includes"],"mappings":";;;;;;;;;;;IAmBaA,6BAA6B;eAA7BA;;IAmFGC,qBAAqB;eAArBA;;;;yBAhGT;;;;;;;gEACW;;;;;;6DAEG;qBACD;kCACgB;8BAC0B;yCACtB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGxC,MAAMC,QAAQC,QAAQ,SAAS;AAGxB,MAAMH,sCAAsCI,iCAAmB;IACpE,2HAA2H,GAC3H,MAAMC,uBAAsC;QAC1C,IAAIC,QAAG,CAACC,iBAAiB,EAAE;YACzBC,KAAIC,IAAI,CAAC;YACT;QACF;QACAP,MAAM;QAEN,MAAMQ,SAAS,MAAM,IAAI,CAACC,2BAA2B;QAErD,oCAAoC;QACpC,MAAM,IAAI,CAACC,oCAAoC,CAAC;YAAEC,KAAKH,OAAOG,GAAG;QAAC;IACpE;IAEA,yBAAyB,GACzB,MAAMF,8BAAsD;QAC1D,MAAMG,SAASC,IAAAA,mBAAS,EAAC,IAAI,CAACC,WAAW;QAEzC,+EAA+E;QAC/E,IAAIf,sBAAsBa,OAAOG,UAAU,GAAG;YAC5C,2CAA2C;YAC3C,MAAMC,aAAaC,IAAAA,8CAAoC,EAAC,IAAI,CAACH,WAAW,EAAEF;YAC1E,MAAM,IAAIM,sCAAwB,CAChC,eACAC,IAAAA,gBAAK,CAAA,CAAC,gEAAgE,EAAEH,WAAW,0BAA0B,CAAC;QAElH;QAEA,OAAOJ;IACT;IAEA,yBAAyB,GACzB,MAAMF,qCAAqC,EAAEC,GAAG,EAAuB,EAAoB;QACzF,MAAMS,mBAAsC;YAC1C;gBAAEC,MAAM;gBAA0BC,KAAK;YAAY;SACpD;QACD,IAAI,CAAClB,QAAG,CAACmB,wBAAwB,EAAE;YACjC,4FAA4F;YAC5F,sEAAsE;YACtEH,iBAAiBI,IAAI,CAAC;gBAAEH,MAAM;gBAAiCC,KAAK;YAAmB;QACzF;QAEA,MAAMG,UAAUC,IAAAA,qCAAmB,EAAC,IAAI,CAACZ,WAAW,EAAEH,KAAKgB,GAAG;QAC9D,qDAAqD;QACrD,IAAIF,YAAY,WAAW;YACzBL,iBAAiBI,IAAI,CACnB,uFAAuF;YACvF;gBACEH,MAAM;gBACNC,KAAK;gBACLM,KAAK;YACP;QAEJ,OAAO,IAAIH,YAAY,SAAS;QAC9B,iGAAiG;QACjG,6FAA6F;QAC7F,sDAAsD;QACtD;;;SAGG,GACL;QAEA,IAAI;YACF,OAAO,MAAMI,IAAAA,gDAAuB,EAAC,IAAI,CAACf,WAAW,EAAE;gBACrD,6IAA6I;gBAC7IgB,YAAY;gBACZC,kBAAkB;gBAClBpB;gBACAqB,gBAAgB,CAAC,kGAAkG,CAAC;gBACpHC,gBAAgBd,IAAAA,gBAAK,CAAA,CAAC,8HAA8H,CAAC;gBACrJC;YACF;QACF,EAAE,OAAOc,OAAO;YACd,wHAAwH;YACxH,IAAI,CAACC,cAAc;YACnB,MAAMD;QACR;IACF;AACF;AAGO,SAASnC,sBAAsBgB,UAAyB;QAG7CA,kBACZA,mBACDA;IAJH,+EAA+E;IAC/E,MAAMqB,gBACJC,MAAMC,OAAO,CAACvB,+BAAAA,mBAAAA,WAAYwB,IAAI,qBAAhBxB,iBAAkByB,SAAS,KACzC,CAAC,GAACzB,oBAAAA,WAAWwB,IAAI,qBAAfxB,kBAAiByB,SAAS,CAACC,MAAM,KACnC,GAAC1B,oBAAAA,WAAWwB,IAAI,qBAAfxB,kBAAiByB,SAAS,CAACE,QAAQ,CAAC;IACvC,OAAON;AACT"}
@@ -33,7 +33,7 @@ class FetchClient {
33
33
  this.headers = {
34
34
  accept: 'application/json',
35
35
  'content-type': 'application/json',
36
- 'user-agent': `expo-cli/${"54.0.2"}`,
36
+ 'user-agent': `expo-cli/${"54.0.3-canary-20250912-b5ce2a8"}`,
37
37
  authorization: 'Basic ' + _nodebuffer().Buffer.from(`${target}:`).toString('base64')
38
38
  };
39
39
  }
@@ -83,7 +83,7 @@ function createContext() {
83
83
  cpu: summarizeCpuInfo(),
84
84
  app: {
85
85
  name: 'expo/cli',
86
- version: "54.0.2"
86
+ version: "54.0.3-canary-20250912-b5ce2a8"
87
87
  },
88
88
  ci: _ciinfo().isCI ? {
89
89
  name: _ciinfo().name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/cli",
3
- "version": "54.0.2",
3
+ "version": "54.0.3-canary-20250912-b5ce2a8",
4
4
  "description": "The Expo CLI",
5
5
  "main": "build/bin/cli",
6
6
  "bin": {
@@ -42,20 +42,20 @@
42
42
  "dependencies": {
43
43
  "@0no-co/graphql.web": "^1.0.8",
44
44
  "@expo/code-signing-certificates": "^0.0.5",
45
- "@expo/config": "~12.0.8",
46
- "@expo/config-plugins": "~54.0.1",
45
+ "@expo/config": "12.0.9-canary-20250912-b5ce2a8",
46
+ "@expo/config-plugins": "54.0.2-canary-20250912-b5ce2a8",
47
47
  "@expo/devcert": "^1.1.2",
48
- "@expo/env": "~2.0.7",
49
- "@expo/image-utils": "^0.8.7",
50
- "@expo/json-file": "^10.0.7",
48
+ "@expo/env": "2.0.8-canary-20250912-b5ce2a8",
49
+ "@expo/image-utils": "0.8.8-canary-20250912-b5ce2a8",
50
+ "@expo/json-file": "10.0.8-canary-20250912-b5ce2a8",
51
51
  "@expo/metro": "~0.1.1",
52
- "@expo/metro-config": "~54.0.2",
53
- "@expo/osascript": "^2.3.7",
54
- "@expo/package-manager": "^1.9.7",
55
- "@expo/plist": "^0.4.7",
56
- "@expo/prebuild-config": "^54.0.1",
57
- "@expo/schema-utils": "^0.1.7",
58
- "@expo/server": "^0.7.4",
52
+ "@expo/metro-config": "54.0.3-canary-20250912-b5ce2a8",
53
+ "@expo/osascript": "2.3.8-canary-20250912-b5ce2a8",
54
+ "@expo/package-manager": "1.9.8-canary-20250912-b5ce2a8",
55
+ "@expo/plist": "0.4.8-canary-20250912-b5ce2a8",
56
+ "@expo/prebuild-config": "54.0.2-canary-20250912-b5ce2a8",
57
+ "@expo/schema-utils": "0.1.8-canary-20250912-b5ce2a8",
58
+ "@expo/server": "0.7.5-canary-20250912-b5ce2a8",
59
59
  "@expo/spawn-async": "^1.7.2",
60
60
  "@expo/ws-tunnel": "^1.0.1",
61
61
  "@expo/xcpretty": "^4.3.0",
@@ -110,8 +110,8 @@
110
110
  ]
111
111
  },
112
112
  "peerDependencies": {
113
- "expo": "*",
114
- "expo-router": "*",
113
+ "expo": "55.0.0-canary-20250912-b5ce2a8",
114
+ "expo-router": "6.0.2-canary-20250912-b5ce2a8",
115
115
  "react-native": "*"
116
116
  },
117
117
  "peerDependenciesMeta": {
@@ -154,7 +154,7 @@
154
154
  "@types/ws": "^8.5.4",
155
155
  "devtools-protocol": "^0.0.1113120",
156
156
  "expo-atlas": "^0.4.1",
157
- "expo-module-scripts": "^5.0.7",
157
+ "expo-module-scripts": "5.0.8-canary-20250912-b5ce2a8",
158
158
  "find-process": "^1.4.7",
159
159
  "jest-runner-tsd": "^6.0.0",
160
160
  "klaw-sync": "^6.0.0",
@@ -166,6 +166,5 @@
166
166
  "taskr": "^1.1.0",
167
167
  "tree-kill": "^1.2.2",
168
168
  "tsd": "^0.28.1"
169
- },
170
- "gitHead": "088e79428be97cf3ee11fc93e0e5a1fc1c8bea1e"
169
+ }
171
170
  }