single-file-cli 2.0.82 → 2.0.83
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 +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.83";
|
package/options.js
CHANGED
|
@@ -112,6 +112,7 @@ const OPTIONS_INFO = [{
|
|
|
112
112
|
"compress-HTML": { description: "Compress HTML content", type: "boolean", defaultValue: true },
|
|
113
113
|
"remove-frames": { description: "Remove frames", type: "boolean" },
|
|
114
114
|
"remove-hidden-elements": { description: "Remove HTML elements which are not displayed", type: "boolean", defaultValue: true },
|
|
115
|
+
"removed-elements-selector": { description: "Remove specific HTML elements matching the given CSS selectors (comma separated)", type: "string" },
|
|
115
116
|
"remove-unused-styles": { description: "Remove unused CSS rules and unneeded declarations", type: "boolean", defaultValue: true },
|
|
116
117
|
"remove-unused-fonts": { description: "Remove unused CSS font rules", type: "boolean", defaultValue: true },
|
|
117
118
|
"remove-alternative-fonts": { description: "Remove alternative fonts to the ones displayed", type: "boolean", defaultValue: true },
|