@ricsam/r5d-browser 0.0.188 → 0.0.189

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-browser",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "type": "commonjs"
5
5
  }
package/dist/mjs/main.mjs CHANGED
@@ -5,7 +5,7 @@ import { startPersonalBrowser } from "./personal-main.mjs";
5
5
  async function main() {
6
6
  const args = process.argv.slice(2);
7
7
  if (args.includes("--version")) {
8
- console.log(`r5d-browser ${true ? "0.0.188" : "development"}`);
8
+ console.log(`r5d-browser ${true ? "0.0.189" : "development"}`);
9
9
  return;
10
10
  }
11
11
  if (!args.length || args.includes("--help")) {
@@ -13,7 +13,7 @@ async function main() {
13
13
  return;
14
14
  }
15
15
  if (args[0] === "start") {
16
- await startPersonalBrowser(parseBrowserArgs(args).options, true ? "0.0.188" : "development");
16
+ await startPersonalBrowser(parseBrowserArgs(args).options, true ? "0.0.189" : "development");
17
17
  return;
18
18
  }
19
19
  if (args.length !== 2 || args[0] !== "--config" || !args[1]?.startsWith("/")) throw new Error("An absolute private browser keeper configuration is required");
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-browser",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "type": "module"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-browser",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "type": "module",
5
5
  "main": "./dist/mjs/main.mjs",
6
6
  "module": "./dist/mjs/main.mjs",
@@ -21,7 +21,7 @@
21
21
  "r5d-browser": "dist/mjs/main.mjs"
22
22
  },
23
23
  "dependencies": {
24
- "@ricsam/r5d-api": "^0.0.188",
24
+ "@ricsam/r5d-api": "^0.0.189",
25
25
  "playwright-core": "1.62.1",
26
26
  "zod": "^4.1.13",
27
27
  "ws": "^8.18.3"