single-file-cli 2.0.32 → 2.0.33

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/Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
1
  FROM zenika/alpine-chrome:with-node
2
2
 
3
- RUN npm install --production single-file-cli
3
+ RUN npm install --omit=dev single-file-cli
4
4
 
5
5
  WORKDIR /usr/src/app/node_modules/single-file-cli
6
6
 
package/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@single-file/single-file-cli",
3
- "version": "2.0.32",
3
+ "version": "2.0.33",
4
4
  "description": "SingleFile CLI",
5
5
  "nodeModulesDir": true,
6
6
  "exports": {
package/lib/browser.js CHANGED
@@ -64,7 +64,7 @@ async function launchBrowser(options = {}, indexPath = 0) {
64
64
  args = args.filter(arg => !argNames.includes(arg.split("=")[0]));
65
65
  args.push(...options.args);
66
66
  }
67
- if (options.args.includes("--headless=new") || args.includes("--auto-open-devtools-for-tabs")) {
67
+ if (args.includes("--headless=new") || args.includes("--auto-open-devtools-for-tabs")) {
68
68
  args.push("--disable-site-isolation-trials");
69
69
  }
70
70
  const command = new Command(executablePath, { args, stdout: PIPED_STD_CONFIG, stderr: PIPED_STD_CONFIG });
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- export const version = "2.0.32";
1
+ export const version = "2.0.33";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-cli",
3
- "version": "2.0.32",
3
+ "version": "2.0.33",
4
4
  "description": "SingleFile CLI",
5
5
  "author": "Gildas Lormeau",
6
6
  "engines": {