@expo-harmony/cli 55.0.26-harmony.7 → 55.0.26-harmony.8
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/run/metro.js +1 -1
- package/package.json +1 -1
- package/src/run/metro.ts +1 -1
package/build/run/metro.js
CHANGED
|
@@ -102,7 +102,7 @@ async function startExpoMetroAsync(projectRoot, options) {
|
|
|
102
102
|
exitError = error;
|
|
103
103
|
});
|
|
104
104
|
const startedAt = Date.now();
|
|
105
|
-
const timeoutMs = options.readyTimeoutMs ||
|
|
105
|
+
const timeoutMs = options.readyTimeoutMs || 1800000;
|
|
106
106
|
try {
|
|
107
107
|
while (Date.now() - startedAt < timeoutMs) {
|
|
108
108
|
if (exitError instanceof errors_1.HarmonyCliError) {
|
package/package.json
CHANGED
package/src/run/metro.ts
CHANGED
|
@@ -147,7 +147,7 @@ async function startExpoMetroAsync(
|
|
|
147
147
|
);
|
|
148
148
|
|
|
149
149
|
const startedAt = Date.now();
|
|
150
|
-
const timeoutMs = options.readyTimeoutMs ||
|
|
150
|
+
const timeoutMs = options.readyTimeoutMs || 1800000;
|
|
151
151
|
|
|
152
152
|
try {
|
|
153
153
|
while (Date.now() - startedAt < timeoutMs) {
|