@playwright-repl/runner 0.24.0 → 0.24.1

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.
@@ -210,4 +210,3 @@ function findResultByIndex(lines, idx) {
210
210
  }
211
211
  return { status: 'failed', duration: 0, errors: [{ message: 'Test result not found' }] };
212
212
  }
213
- //# sourceMappingURL=bridge-utils.cjs.map
@@ -142,4 +142,3 @@ export function classifyCall(call) {
142
142
  // All checks passed → bridge
143
143
  return 'bridge';
144
144
  }
145
- //# sourceMappingURL=classify.js.map
@@ -38,4 +38,3 @@ export function compileWithRouting(jsCode) {
38
38
  return { code, bridgeCallCount, nodeCallCount };
39
39
  }
40
40
  export { findPageCalls, classifyCall, transformBridgeCalls };
41
- //# sourceMappingURL=index.js.map
@@ -74,4 +74,3 @@ export function findPageCalls(code) {
74
74
  });
75
75
  return calls;
76
76
  }
77
- //# sourceMappingURL=parser.js.map
@@ -33,4 +33,3 @@ export function transformBridgeCalls(code, bridgeCalls) {
33
33
  map: s.generateMap({ hires: true }),
34
34
  };
35
35
  }
36
- //# sourceMappingURL=transform.js.map
package/dist/index.js CHANGED
@@ -1,2 +1 @@
1
1
  export { needsNode, compile, parseAllResults } from './bridge-utils.cjs';
2
- //# sourceMappingURL=index.js.map
package/dist/pw-cli.js CHANGED
@@ -178,4 +178,3 @@ async function tryDirectEvaluate(testArgs, extensionPath) {
178
178
  await context.close();
179
179
  return totalFailed > 0 ? 1 : 0;
180
180
  }
181
- //# sourceMappingURL=pw-cli.js.map
package/dist/pw-repl.js CHANGED
@@ -126,4 +126,3 @@ export async function handleRepl(argv) {
126
126
  });
127
127
  process.exit(0);
128
128
  }
129
- //# sourceMappingURL=pw-repl.js.map
@@ -21,4 +21,3 @@ Object.defineProperty(_test, 'use', { get: () => _g.__test?.use });
21
21
  export const test = _test;
22
22
  export const it = _test;
23
23
  export const expect = _g.__expect;
24
- //# sourceMappingURL=alias.js.map
@@ -188,4 +188,3 @@ globalThis.__resetTestState = () => {
188
188
  hasOnly = false;
189
189
  };
190
190
  export { test, _expect as expect };
191
- //# sourceMappingURL=test-runner.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playwright-repl/runner",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "description": "Playwright test utilities — bridge-mode compilation, node detection, and CLI subcommands",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,8 +19,8 @@
19
19
  "acorn-walk": "^8.3.5",
20
20
  "esbuild-wasm": "^0.27.4",
21
21
  "magic-string": "^0.30.21",
22
- "@playwright-repl/browser-extension": "0.24.0",
23
- "@playwright-repl/core": "0.24.0"
22
+ "@playwright-repl/browser-extension": "0.24.1",
23
+ "@playwright-repl/core": "0.24.1"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@playwright/test": ">=1.57.0"