single-file-cli 2.0.59 → 2.0.60
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/cdp-client.js +2 -5
- package/lib/single-file-bundle.js +1 -1
- package/lib/version.js +1 -1
- package/options.js +1 -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.60";
|
package/options.js
CHANGED
|
@@ -140,6 +140,7 @@ const OPTIONS_INFO = {
|
|
|
140
140
|
"resolve-links": { description: "Resolve link URLs to absolute URLs", type: "boolean", defaultValue: true },
|
|
141
141
|
"settings-file": { description: "Path to a JSON file containing the settings exported from the web extension", type: "string" },
|
|
142
142
|
"settings-file-profile": { description: "Name of the profile to use when using --settings-file", type: "string", defaultValue: "default" },
|
|
143
|
+
"group-duplicate-stylesheets": { description: "Group duplicate inline stylesheets into a single stylesheet in order to reduce the size of the page", type: "boolean", defaultValue: true }
|
|
143
144
|
};
|
|
144
145
|
|
|
145
146
|
const { args, exit } = Deno;
|