We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229f0b4 commit 73840b8Copy full SHA for 73840b8
.github/workflows/main.yml
@@ -88,7 +88,7 @@ jobs:
88
- name: Minify HTML files
89
run: |
90
find . -type f -name "*.html" -not -path "./node_modules/*" | while read file; do
91
- html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true -o "$file.min" "$file"
+ html-minifier --collapse-whitespace --remove-comments --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --minify-css true --minify-js true -o "$file.min" "$file"
92
mv "$file.min" "$file"
93
done
94
0 commit comments