single-file-cli 2.0.52 → 2.0.54

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/build.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- deno vendor "npm:single-file-core@1.5.15"
3
+ deno vendor "npm:single-file-core@1.5.16"
4
4
 
5
5
  echo "
6
6
  import { build } from 'npm:esbuild';
package/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@single-file/single-file-cli",
3
- "version": "2.0.52",
3
+ "version": "2.0.54",
4
4
  "description": "SingleFile CLI",
5
5
  "nodeModulesDir": true,
6
6
  "exports": {
package/lib/cdp-client.js CHANGED
@@ -125,7 +125,6 @@ async function getPageData(options) {
125
125
  }
126
126
  alternativeUrl = alternativeUrl.href;
127
127
  let httpInfo;
128
- delete options.zipScript;
129
128
  Fetch.addEventListener("requestPaused", async ({ params }) => {
130
129
  const { requestId, request, resourceType, responseHeaders, responseStatusCode, responseStatusText } = params;
131
130
  if (options.outputJson && !httpInfo && (request.url == url || request.url == alternativeUrl) && responseStatusCode !== undefined) {