playwright-repl 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.
package/dist/engine.js CHANGED
@@ -393,4 +393,3 @@ function formatResult(result) {
393
393
  }
394
394
  return { isError, text, image };
395
395
  }
396
- //# sourceMappingURL=engine.js.map
package/dist/index.js CHANGED
@@ -14,4 +14,3 @@ export { Engine } from './engine.js';
14
14
  // CLI-specific
15
15
  export { SessionRecorder, SessionPlayer } from './recorder.js';
16
16
  export { startRepl } from './repl.js';
17
- //# sourceMappingURL=index.js.map
@@ -108,4 +108,3 @@ startRepl({
108
108
  console.error(`Fatal: ${err.message}`);
109
109
  process.exit(1);
110
110
  });
111
- //# sourceMappingURL=playwright-repl.js.map
package/dist/recorder.js CHANGED
@@ -204,4 +204,3 @@ export class SessionManager {
204
204
  get player() { return this.#player; }
205
205
  get step() { return this.#step; }
206
206
  }
207
- //# sourceMappingURL=recorder.js.map
package/dist/repl.js CHANGED
@@ -949,4 +949,3 @@ export async function startRepl(opts = {}) {
949
949
  startCommandLoop(ctx);
950
950
  }
951
951
  }
952
- //# sourceMappingURL=repl.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-repl",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "description": "Interactive REPL for Playwright — keyword commands, recording, and replay",
5
5
  "type": "module",
6
6
  "bin": {
@@ -35,8 +35,8 @@
35
35
  "dependencies": {
36
36
  "playwright": "^1.59.1",
37
37
  "playwright-core": "^1.59.1",
38
- "@playwright-repl/browser-extension": "0.24.0",
39
- "@playwright-repl/core": "0.24.0"
38
+ "@playwright-repl/browser-extension": "0.24.1",
39
+ "@playwright-repl/core": "0.24.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "vitest": "^4.0.18"