rnxsim 0.1.443 → 0.1.444

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.
Files changed (55) hide show
  1. package/cli/outbound-endpoints.ts +2 -0
  2. package/detox/jest-setup-after-env.cjs +4 -0
  3. package/detox/record-block-execution.cjs +78 -0
  4. package/dist-lib/agent-daemon-client.cjs +1 -1
  5. package/dist-lib/agent-events.cjs +1 -1
  6. package/dist-lib/agent-identity.cjs +1 -1
  7. package/dist-lib/agent-sessions.cjs +1 -1
  8. package/dist-lib/attached-projects.cjs +1 -1
  9. package/dist-lib/auth/shared-session.cjs +1 -1
  10. package/dist-lib/backend-origin.cjs +1 -1
  11. package/dist-lib/beta.cjs +1 -1
  12. package/dist-lib/beta.mjs +1 -1
  13. package/dist-lib/bridge-constants.cjs +1 -1
  14. package/dist-lib/bridge-contract-input.cjs +1 -1
  15. package/dist-lib/bridge-contract-input.mjs +1 -1
  16. package/dist-lib/bridge-contract.cjs +1 -1
  17. package/dist-lib/bridge-contract.mjs +1 -1
  18. package/dist-lib/capture-contract.cjs +1 -1
  19. package/dist-lib/capture-contract.mjs +1 -1
  20. package/dist-lib/cli-constants.cjs +1 -1
  21. package/dist-lib/cloud-contract.cjs +1 -1
  22. package/dist-lib/cloud-contract.mjs +1 -1
  23. package/dist-lib/cloud.cjs +1 -1
  24. package/dist-lib/cloud.mjs +1 -1
  25. package/dist-lib/config.cjs +1 -1
  26. package/dist-lib/detox/index.cjs +1 -1
  27. package/dist-lib/dev-bundle-resolution.cjs +1 -1
  28. package/dist-lib/home-paths.cjs +1 -1
  29. package/dist-lib/host/bridge-host.cjs +20 -20
  30. package/dist-lib/host/fetch-proxy-handler.cjs +1 -1
  31. package/dist-lib/host/fetch-proxy-overrides.cjs +1 -1
  32. package/dist-lib/host/fetch-proxy-overrides.mjs +1 -1
  33. package/dist-lib/host/replacement-module-handler.cjs +1 -1
  34. package/dist-lib/host/websocket-proxy.cjs +1 -1
  35. package/dist-lib/index.cjs +1 -1
  36. package/dist-lib/jump-to-source-babel.cjs +1 -1
  37. package/dist-lib/menu.cjs +5 -1
  38. package/dist-lib/menu.mjs +5 -1
  39. package/dist-lib/metro-fingerprint-registry.cjs +1 -1
  40. package/dist-lib/metro-fingerprint-registry.mjs +1 -1
  41. package/dist-lib/metro-production-bundle.cjs +1 -1
  42. package/dist-lib/metro-production-bundle.mjs +1 -1
  43. package/dist-lib/metro.cjs +1 -1
  44. package/dist-lib/profiles.cjs +1 -1
  45. package/dist-lib/public-brand.cjs +1 -1
  46. package/dist-lib/react-native-host-modules.cjs +1 -1
  47. package/dist-lib/react-native-host-modules.mjs +1 -1
  48. package/dist-lib/render-mode.cjs +1 -1
  49. package/dist-lib/scripts/dev-server-scanner.cjs +1 -1
  50. package/dist-lib/sdk.cjs +1 -1
  51. package/dist-lib/sdk.mjs +1 -1
  52. package/dist-lib/skills.cjs +314 -76
  53. package/dist-lib/vite.cjs +1 -1
  54. package/package.json +1 -1
  55. package/src/menu.ts +4 -0
@@ -382,6 +382,8 @@ export const DECLARED_OUTBOUND_CALLS: Record<string, OutboundCallDeclaration> =
382
382
  category: 'same_origin_runtime',
383
383
  count: 1,
384
384
  },
385
+ 'packages/sootsim-engine/src/menu/menuActions.ts :: fetch :: `http://127.0.0.1:${port}/__send-to-box`':
386
+ { category: 'local_development', count: 1 },
385
387
  "packages/sootsim-engine/src/screenshots/capture-store.ts :: fetch :: captureApiUrl(ref, 'grid')":
386
388
  { category: 'contrast_user_action', count: 1 },
387
389
  'packages/sootsim-engine/src/screenshots/capture-store.ts :: fetch :: captureApiUrl(ref, variant)':
@@ -11,6 +11,10 @@
11
11
  // force-reaps its tree. registering it here means no suite has to remember an
12
12
  // afterAll of its own.
13
13
 
14
+ // records which test bodies actually ran, so a downstream reader can tell a
15
+ // setup failure from a behavior failure. no-op unless the run asks for it.
16
+ require('./record-block-execution.cjs')
17
+
14
18
  const { cleanup } = require('rnxsim/detox')
15
19
 
16
20
  afterAll(async () => {
@@ -0,0 +1,78 @@
1
+ // producer half of the paired test-block execution contract. jest's own JSON
2
+ // reporter cannot say whether a failed block failed in its body or never got
3
+ // there: a `beforeAll`/`beforeEach` throw and a failed `expect` inside the body
4
+ // produce assertion results identical in status, duration, invocations,
5
+ // numPassingAsserts and retryReasons. only the failure message text differs, and
6
+ // attributing behavior on message text is the fuzzy join this whole bridge
7
+ // exists to remove.
8
+ //
9
+ // so the suite records it directly. this module wraps the globals the
10
+ // conformance catalogs register their blocks with, and appends one line per
11
+ // block whose body actually started, naming how that body finished. a block
12
+ // whose hooks failed produces no line at all, which is what makes a setup loss
13
+ // distinguishable from a behavior failure downstream.
14
+ //
15
+ // the rnx suites get it through `jest-setup-after-env.cjs`, which this preset
16
+ // already loads; the native detox suites name it in `setupFilesAfterEnv`
17
+ // directly. either way it does nothing until CONFORMANCE_BLOCK_EXECUTION_FILE
18
+ // is set, so an unwired run behaves exactly as before.
19
+ //
20
+ // `scripts/lib/paired-conformance-test-outcomes.ts` reads what this writes.
21
+
22
+ const { appendFileSync } = require('node:fs')
23
+ // the global `expect` is not jest's here: detox's core listener overwrites it
24
+ // with its own element matcher on the circus `setup` event, which fires before
25
+ // setup files are required. `@jest/globals` is served by the jest runtime
26
+ // itself and always hands back the same jest expect the runner set `testPath`
27
+ // on, whatever a runner did to the globals.
28
+ const { expect: jestExpect } = require('@jest/globals')
29
+
30
+ const outputFile = process.env.CONFORMANCE_BLOCK_EXECUTION_FILE
31
+
32
+ if (outputFile) {
33
+ const testFile = jestExpect.getState().testPath
34
+
35
+ // a retried block runs its body more than once. numbering the invocations
36
+ // makes the retry explicit, so a reader can take the last attempt instead of
37
+ // guessing which of two identical lines was terminal.
38
+ const attempts = new Map()
39
+
40
+ const record = (title, bodyOutcome) => {
41
+ const attempt = (attempts.get(title) ?? 0) + 1
42
+ attempts.set(title, attempt)
43
+ appendFileSync(
44
+ outputFile,
45
+ `${JSON.stringify({ attempt, bodyOutcome, testFile, title })}\n`,
46
+ )
47
+ }
48
+
49
+ // jest workers each append to the same file. these lines are far below the
50
+ // atomic-append size, so interleaving splits between lines, never inside one.
51
+ const wrap = (raw) => {
52
+ const wrapped = function wrapped(title, body, timeout) {
53
+ if (typeof body !== 'function') return raw(title, body, timeout)
54
+ return raw(
55
+ title,
56
+ async function recordedBody(...args) {
57
+ let bodyOutcome = 'failed'
58
+ try {
59
+ const value = await body.apply(this, args)
60
+ bodyOutcome = 'passed'
61
+ return value
62
+ } finally {
63
+ record(title, bodyOutcome)
64
+ }
65
+ },
66
+ timeout,
67
+ )
68
+ }
69
+ // carries over each/skip/todo/failing/concurrent; `only` is wrapped too so a
70
+ // focused run still records its bodies.
71
+ Object.assign(wrapped, raw)
72
+ if (typeof raw.only === 'function') wrapped.only = wrap(raw.only)
73
+ return wrapped
74
+ }
75
+
76
+ globalThis.it = wrap(globalThis.it)
77
+ globalThis.test = wrap(globalThis.test)
78
+ }
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
package/dist-lib/beta.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
package/dist-lib/beta.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/beta.ts
4
4
  var IS_BETA = true;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/bridge-contract.ts
4
4
  var SIM_LONG_PRESS_MAX_MS = 5e3;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/bridge-contract.ts
4
4
  var SIM_LONG_PRESS_DEFAULT_MS = 500;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/capture-contract.ts
4
4
  var RNX_SCREEN_CAPTURE_VERSION = 1;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/cloud-contract.ts
4
4
  var RNX_CLOUD_MAX_ARTIFACT_BYTES = 20 * 1024 * 1024;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  var __defProp = Object.defineProperty;
3
3
  var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4
4
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -2462,67 +2462,67 @@ var init_stub_manifest = __esm({
2462
2462
  specifier: "react-native/Libraries/Pressability/usePressability",
2463
2463
  stubFile: "rn-libraries/usePressability.ts",
2464
2464
  runtimeTier: "core",
2465
- buildResolvers: ["vite"]
2465
+ buildResolvers: ["vite", "dep-prebundle"]
2466
2466
  },
2467
2467
  pressability: {
2468
2468
  specifier: "react-native/Libraries/Pressability/Pressability",
2469
2469
  stubFile: "rn-libraries/Pressability.ts",
2470
2470
  runtimeTier: "core",
2471
- buildResolvers: ["vite"]
2471
+ buildResolvers: ["vite", "dep-prebundle"]
2472
2472
  },
2473
2473
  pressabilityDebug: {
2474
2474
  specifier: "react-native/Libraries/Pressability/PressabilityDebug",
2475
2475
  stubFile: "rn-libraries/PressabilityDebug.ts",
2476
2476
  runtimeTier: "core",
2477
- buildResolvers: ["vite"]
2477
+ buildResolvers: ["vite", "dep-prebundle"]
2478
2478
  },
2479
2479
  reactFabric: {
2480
2480
  specifier: "react-native/Libraries/Renderer/shims/ReactFabric",
2481
2481
  stubFile: "rn-libraries/ReactFabric.ts",
2482
2482
  runtimeTier: "core",
2483
- buildResolvers: ["vite"]
2483
+ buildResolvers: ["vite", "dep-prebundle"]
2484
2484
  },
2485
2485
  reactNativeRenderer: {
2486
2486
  specifier: "react-native/Libraries/Renderer/shims/ReactNative",
2487
2487
  stubFile: "rn-libraries/ReactNative.ts",
2488
2488
  runtimeTier: "core",
2489
- buildResolvers: ["vite"]
2489
+ buildResolvers: ["vite", "dep-prebundle"]
2490
2490
  },
2491
2491
  reactNativeViewConfigRegistry: {
2492
2492
  specifier: "react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry",
2493
2493
  stubFile: "rn-libraries/ReactNativeViewConfigRegistry.ts",
2494
2494
  runtimeTier: "core",
2495
- buildResolvers: ["vite"]
2495
+ buildResolvers: ["vite", "dep-prebundle"]
2496
2496
  },
2497
2497
  appContainer: {
2498
2498
  specifier: "react-native/Libraries/ReactNative/AppContainer",
2499
2499
  stubFile: "rn-libraries/AppContainer.ts",
2500
2500
  runtimeTier: "core",
2501
- buildResolvers: ["vite"]
2501
+ buildResolvers: ["vite", "dep-prebundle"]
2502
2502
  },
2503
2503
  appRegistry: {
2504
2504
  specifier: "react-native/Libraries/ReactNative/AppRegistry",
2505
2505
  stubFile: "rn-libraries/AppRegistry.ts",
2506
2506
  runtimeTier: "core",
2507
- buildResolvers: ["vite"]
2507
+ buildResolvers: ["vite", "dep-prebundle"]
2508
2508
  },
2509
2509
  rendererImplementation: {
2510
2510
  specifier: "react-native/Libraries/ReactNative/RendererImplementation",
2511
2511
  stubFile: "rn-libraries/RendererImplementation.ts",
2512
2512
  runtimeTier: "core",
2513
- buildResolvers: ["vite"]
2513
+ buildResolvers: ["vite", "dep-prebundle"]
2514
2514
  },
2515
2515
  rendererProxy: {
2516
2516
  specifier: "react-native/Libraries/ReactNative/RendererProxy",
2517
2517
  stubFile: "rn-libraries/RendererProxy.ts",
2518
2518
  runtimeTier: "core",
2519
- buildResolvers: ["vite"]
2519
+ buildResolvers: ["vite", "dep-prebundle"]
2520
2520
  },
2521
2521
  getDevServer: {
2522
2522
  specifier: "react-native/Libraries/Core/Devtools/getDevServer",
2523
2523
  stubFile: "rn-libraries/getDevServer.ts",
2524
2524
  runtimeTier: "core",
2525
- buildResolvers: ["vite"]
2525
+ buildResolvers: ["vite", "dep-prebundle"]
2526
2526
  },
2527
2527
  codegenNativeCommands: {
2528
2528
  specifier: "react-native/Libraries/Utilities/codegenNativeCommands",
@@ -2540,19 +2540,19 @@ var init_stub_manifest = __esm({
2540
2540
  specifier: "react-native/Libraries/Image/resolveAssetSource",
2541
2541
  stubFile: "rn-libraries/resolveAssetSource.ts",
2542
2542
  runtimeTier: "core",
2543
- buildResolvers: ["vite"]
2543
+ buildResolvers: ["vite", "dep-prebundle"]
2544
2544
  },
2545
2545
  viewConfigIgnore: {
2546
2546
  specifier: "react-native/Libraries/NativeComponent/ViewConfigIgnore",
2547
2547
  stubFile: "rn-libraries/ViewConfigIgnore.ts",
2548
2548
  runtimeTier: "core",
2549
- buildResolvers: ["vite"]
2549
+ buildResolvers: ["vite", "dep-prebundle"]
2550
2550
  },
2551
2551
  nativeComponentRegistry: {
2552
2552
  specifier: "react-native/Libraries/NativeComponent/NativeComponentRegistry",
2553
2553
  stubFile: "rn-libraries/NativeComponentRegistry.ts",
2554
2554
  runtimeTier: "core",
2555
- buildResolvers: ["vite"]
2555
+ buildResolvers: ["vite", "dep-prebundle"]
2556
2556
  },
2557
2557
  // RN TurboModule spec for SourceCode. third-party libraries import
2558
2558
  // this directly to read `scriptURL`; without the deep-path stub the
@@ -2562,19 +2562,19 @@ var init_stub_manifest = __esm({
2562
2562
  specifier: "react-native/src/private/specs/modules/NativeSourceCode",
2563
2563
  stubFile: "rn-libraries/NativeSourceCode.ts",
2564
2564
  runtimeTier: "core",
2565
- buildResolvers: ["vite"]
2565
+ buildResolvers: ["vite", "dep-prebundle"]
2566
2566
  },
2567
2567
  nativeSourceCodeDeprecated: {
2568
2568
  specifier: "react-native/src/private/specs_DEPRECATED/modules/NativeSourceCode",
2569
2569
  stubFile: "rn-libraries/NativeSourceCode.ts",
2570
2570
  runtimeTier: "core",
2571
- buildResolvers: ["vite"]
2571
+ buildResolvers: ["vite", "dep-prebundle"]
2572
2572
  },
2573
2573
  nativeSourceCodeLibraries: {
2574
2574
  specifier: "react-native/Libraries/NativeModules/specs/NativeSourceCode",
2575
2575
  stubFile: "rn-libraries/NativeSourceCode.ts",
2576
2576
  runtimeTier: "core",
2577
- buildResolvers: ["vite"]
2577
+ buildResolvers: ["vite", "dep-prebundle"]
2578
2578
  },
2579
2579
  // RN TurboModule spec for the Android StatusBar. libraries import it
2580
2580
  // directly and `Object.assign` over its default export; the shim namespace
@@ -2583,13 +2583,13 @@ var init_stub_manifest = __esm({
2583
2583
  specifier: "react-native/Libraries/Components/StatusBar/NativeStatusBarManagerAndroid",
2584
2584
  stubFile: "rn-libraries/NativeStatusBarManagerAndroid.ts",
2585
2585
  runtimeTier: "core",
2586
- buildResolvers: ["vite"]
2586
+ buildResolvers: ["vite", "dep-prebundle"]
2587
2587
  },
2588
2588
  nativeStatusBarManagerAndroidDeprecated: {
2589
2589
  specifier: "react-native/src/private/specs_DEPRECATED/modules/NativeStatusBarManagerAndroid",
2590
2590
  stubFile: "rn-libraries/NativeStatusBarManagerAndroid.ts",
2591
2591
  runtimeTier: "core",
2592
- buildResolvers: ["vite"]
2592
+ buildResolvers: ["vite", "dep-prebundle"]
2593
2593
  }
2594
2594
  };
2595
2595
  }
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/host/fetch-proxy-overrides.ts
4
4
  var FETCH_PROXY_BROWSER_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36";
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
package/dist-lib/menu.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -178,6 +178,10 @@ function fileMenu(state, deviceChoices) {
178
178
  browserAccelerator: true,
179
179
  shortcutLabel: "start/stop recording",
180
180
  showInShortcutDocs: true
181
+ },
182
+ {
183
+ label: "Send to Box",
184
+ action: "send-to-box"
181
185
  }
182
186
  ]
183
187
  };
package/dist-lib/menu.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/public-brand.ts
4
4
  var name = "rnx";
@@ -140,6 +140,10 @@ function fileMenu(state, deviceChoices) {
140
140
  browserAccelerator: true,
141
141
  shortcutLabel: "start/stop recording",
142
142
  showInShortcutDocs: true
143
+ },
144
+ {
145
+ label: "Send to Box",
146
+ action: "send-to-box"
143
147
  }
144
148
  ]
145
149
  };
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/metro-fingerprint-registry.ts
4
4
  var RNX_METRO_FINGERPRINT_SCHEMA_VERSION = 2;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/metro-production-bundle.ts
4
4
  var RNXSIM_METRO_MODULE_PATHS_PREFIX = "globalThis.__sootsimModulePaths=";
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
 
3
3
  // src/react-native-host-modules.ts
4
4
  var REACT_NATIVE_PASSTHROUGH_SPECIFIERS = [
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __create = Object.create;
package/dist-lib/sdk.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
3
3
  "use strict";
4
4
  var __defProp = Object.defineProperty;
package/dist-lib/sdk.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! rnx v0.1.443 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
1
+ /*! rnx v0.1.444 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
2
2
  var __defProp = Object.defineProperty;
3
3
  var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4
4
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);