@playwright-repl/core 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.
@@ -177,4 +177,3 @@ async function killProcessOnPort(port) {
177
177
  // Process may already be gone
178
178
  }
179
179
  }
180
- //# sourceMappingURL=bridge-server.js.map
package/dist/colors.js CHANGED
@@ -36,4 +36,3 @@ export function prettyJson(text) {
36
36
  return text;
37
37
  }
38
38
  }
39
- //# sourceMappingURL=colors.js.map
@@ -49,4 +49,3 @@ export function buildCompletionItems() {
49
49
  items.sort((a, b) => a.cmd.localeCompare(b.cmd));
50
50
  return items;
51
51
  }
52
- //# sourceMappingURL=completion-data.js.map
@@ -137,4 +137,3 @@ export class EvaluateConnection {
137
137
  onEvent(_fn) { }
138
138
  async waitForConnection(_timeoutMs) { }
139
139
  }
140
- //# sourceMappingURL=evaluate-connection.js.map
package/dist/filter.js CHANGED
@@ -26,4 +26,3 @@ export function filterResponse(text, cmdName, opts) {
26
26
  }
27
27
  return kept.length > 0 ? kept.join('\n') : '';
28
28
  }
29
- //# sourceMappingURL=filter.js.map
package/dist/index.js CHANGED
@@ -11,4 +11,3 @@ export { BridgeServer } from './bridge-server.js';
11
11
  export { EvaluateConnection, findExtensionPath } from './evaluate-connection.js';
12
12
  export { parseSnapshot, refToLocator, allRefLocators } from './snapshot-parser.js';
13
13
  export { isLocalCommand, handleLocalCommand, isVideoCommand, handleVideoCommand, isTracingCommand, handleTracingCommand } from './local-commands.js';
14
- //# sourceMappingURL=index.js.map
@@ -97,4 +97,3 @@ export async function handleLocalCommand(cmd, context) {
97
97
  return handleTracingCommand(cmd, context);
98
98
  return null;
99
99
  }
100
- //# sourceMappingURL=local-commands.js.map
@@ -216,4 +216,3 @@ export async function pressKeyByRole(page, role, name, key, nth, inRole, inText)
216
216
  loc = loc.nth(nth);
217
217
  await loc.press(key);
218
218
  }
219
- //# sourceMappingURL=page-scripts.js.map
package/dist/parser.js CHANGED
@@ -284,4 +284,3 @@ export function resolveArgs(args) {
284
284
  }
285
285
  return args;
286
286
  }
287
- //# sourceMappingURL=parser.js.map
package/dist/resolve.js CHANGED
@@ -192,4 +192,3 @@ export const JS_CATEGORIES = {
192
192
  'Evaluate': ['page.evaluate(() => expr)'],
193
193
  'Other': ['page.screenshot()', 'page.keyboard.press(key)', 'page.mouse.click(x, y)', '...'],
194
194
  };
195
- //# sourceMappingURL=resolve.js.map
@@ -118,4 +118,3 @@ function parseRoleName(text) {
118
118
  return { role: text };
119
119
  return { role: match[1], name: match[2] };
120
120
  }
121
- //# sourceMappingURL=snapshot-parser.js.map
package/dist/types.js CHANGED
@@ -1,3 +1,2 @@
1
1
  // ─── Engine types (shared across packages) ──────────────────────────────────
2
2
  export {};
3
- //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@playwright-repl/core",
3
3
  "description": "Shared parser, servers, and utilities for playwright-repl",
4
- "version": "0.24.0",
4
+ "version": "0.24.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "exports": {
@@ -17,7 +17,7 @@
17
17
  "ws": "^8.19.0"
18
18
  },
19
19
  "peerDependencies": {
20
- "@playwright-repl/browser-extension": "0.24.0"
20
+ "@playwright-repl/browser-extension": "0.24.1"
21
21
  },
22
22
  "peerDependenciesMeta": {
23
23
  "@playwright-repl/browser-extension": {