@absolutejs/absolute 0.20.0-beta.58 → 0.20.0-beta.59

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.
@@ -3229,6 +3229,7 @@ var writeAbsoluteCapacitorConfig = async (config, options) => {
3229
3229
 
3230
3230
  // src/mobile/androidEmulatorController.ts
3231
3231
  init_getDurationString();
3232
+ var ANDROID_CAPTURE_TIMEOUT_MS = 1e4;
3232
3233
  var HASH_RADIX = 16;
3233
3234
  var EXECUTABLE_MODE_MASK = 73;
3234
3235
  var NATIVE_PUBLIC_PATH_SEGMENTS = 5;
@@ -3268,7 +3269,8 @@ var captureCommand2 = (command, options = {}) => {
3268
3269
  cwd: options.cwd,
3269
3270
  env: options.env,
3270
3271
  stderr: "pipe",
3271
- stdout: "pipe"
3272
+ stdout: "pipe",
3273
+ timeout: ANDROID_CAPTURE_TIMEOUT_MS
3272
3274
  });
3273
3275
  return {
3274
3276
  exitCode: result.exitCode,
@@ -7398,7 +7400,11 @@ var createAbsoluteMobilePageRequest = (manifest, path, options = {}) => {
7398
7400
  headers.set(MOBILE_PAGE_REQUEST_HEADERS.pageId, page.pageId);
7399
7401
  headers.set(MOBILE_PAGE_REQUEST_HEADERS.protocol, String(ABSOLUTE_MOBILE_PAGE_PROTOCOL_VERSION));
7400
7402
  headers.set(MOBILE_PAGE_REQUEST_HEADERS.runtime, manifest.runtime);
7401
- return new Request(url, { headers, method: "GET" });
7403
+ return new Request(url, {
7404
+ headers,
7405
+ method: "GET",
7406
+ ...options.signal ? { signal: options.signal } : {}
7407
+ });
7402
7408
  };
7403
7409
  var fetchAbsoluteMobilePage = async (manifest, path, options = {}) => {
7404
7410
  const request = createAbsoluteMobilePageRequest(manifest, path, options);
@@ -12551,5 +12557,5 @@ export {
12551
12557
  writeAbsoluteMobileGithubWorkflow
12552
12558
  };
12553
12559
 
12554
- //# debugId=26FC2C1F9CAA3EC464756E2164756E21
12560
+ //# debugId=AC4084DD1C6BCD7664756E2164756E21
12555
12561
  //# sourceMappingURL=index.js.map