@expo-harmony/cli 55.0.26-harmony.6 → 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/README.md CHANGED
@@ -168,4 +168,4 @@ Debug 模式下由 CLI 启动的 Metro 接管终端输出日志,Ctrl+C 退出
168
168
  **expo-harmony** © [Baoshuo](https://github.com/renbaoshuo), Released under the MIT License.<br>
169
169
  Authored and maintained by Baoshuo with help from [contributors](https://github.com/renbaoshuo/expo-harmony/contributors).
170
170
 
171
- > [Personal Website](https://baoshuo.ren) · [Blog](https://blog.baoshuo.ren) · GitHub [@renbaoshuo](https://github.com/renbaoshuo) · Twitter [@baoshuo](https://twitter.com/baoshuo)
171
+ > [Personal Website](https://baoshuo.ren) · [Blog](https://blog.baoshuo.ren) · GitHub [@renbaoshuo](https://github.com/renbaoshuo) · Twitter [@renbaoshuo](https://twitter.com/renbaoshuo)
@@ -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 || 60_000;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo-harmony/cli",
3
- "version": "55.0.26-harmony.6",
3
+ "version": "55.0.26-harmony.8",
4
4
  "keywords": [
5
5
  "react-native",
6
6
  "expo",
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@expo-harmony/config-plugins": "55.0.10-harmony.2",
40
40
  "@expo-harmony/expo-modules-autolinking": "55.0.25-harmony.3",
41
- "@expo-harmony/prebuild-config": "55.0.0-harmony.5",
41
+ "@expo-harmony/prebuild-config": "55.0.0-harmony.6",
42
42
  "@expo/config": "55.0.17",
43
43
  "cross-spawn": "^7.0.6",
44
44
  "json5": "2.2.3"
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 || 60_000;
150
+ const timeoutMs = options.readyTimeoutMs || 1800000;
151
151
 
152
152
  try {
153
153
  while (Date.now() - startedAt < timeoutMs) {