single-file-cli 2.0.49 → 2.0.50
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 +1 -1
- package/deno.json +1 -1
- package/lib/single-file-bundle.js +1 -1
- package/lib/version.js +1 -1
- package/options.js +2 -0
- package/package.json +1 -1
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "2.0.
|
|
1
|
+
export const version = "2.0.50";
|
package/options.js
CHANGED
|
@@ -97,6 +97,8 @@ const OPTIONS_INFO = {
|
|
|
97
97
|
"http-proxy-password": { description: "HTTP password", type: "string" },
|
|
98
98
|
"include-BOM": { description: "Include the UTF-8 BOM into the HTML page", type: "boolean" },
|
|
99
99
|
"include-infobar": { description: "Include the infobar", type: "boolean" },
|
|
100
|
+
"infobar-template": { description: "Template used to generate the infobar content (see help page of the extension for more info)", type: "string" },
|
|
101
|
+
"open-infobar": { description: "Keep the infobar open when using --include-infobar", type: "boolean" },
|
|
100
102
|
"insert-meta-CSP": { description: "Include a <meta> tag with a CSP to avoid potential requests to internet when viewing a page", type: "boolean", defaultValue: true },
|
|
101
103
|
"load-deferred-images": { description: "Load deferred (a.k.a. lazy-loaded) images", type: "boolean", defaultValue: true },
|
|
102
104
|
"load-deferred-images-dispatch-scroll-event": { description: "Dispatch 'scroll' event when loading deferred images", type: "boolean" },
|