@intuned/runtime-dev 1.3.6-brave.2 → 1.3.6-brave.3

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.
@@ -84,9 +84,10 @@ async function launchChromium({
84
84
  extraArgs.push(`--app=${appModeInitialUrl}`);
85
85
  }
86
86
  if (executablePath) {
87
+ console.log("Using custom executable path:", executablePath);
87
88
  executablePath = await fs.realpath(executablePath);
88
89
  if (!(await fs.exists(executablePath))) {
89
- console.warn(`Executable path ${executablePath} does not exist. Falling back to default.`);
90
+ console.log(`Warning: Executable path ${executablePath} does not exist. Falling back to default.`);
90
91
  executablePath = undefined;
91
92
  }
92
93
  }
@@ -290,9 +291,11 @@ async function getRemotePlaywrightContext(cdpAddress) {
290
291
  }
291
292
  async function getExecutablePath() {
292
293
  if (process.env.BROWSER_TYPE === "brave") {
294
+ console.log("Using Brave browser");
293
295
  const bravePath = await (0, _which.default)("brave-browser-stable", {
294
296
  nothrow: true
295
297
  });
298
+ console.log("Brave path:", bravePath);
296
299
  return bravePath ?? undefined;
297
300
  }
298
301
  return undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.3.6-brave.2",
3
+ "version": "1.3.6-brave.3",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",