From a06409bb3a331879ea3a166bf84a13d6f6161103 Mon Sep 17 00:00:00 2001 From: Billy Richardson Date: Mon, 7 Jul 2025 01:26:42 -0700 Subject: [PATCH] Reduce minification on docs --- .github/workflows/pages.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index b018905..319853a 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -99,24 +99,13 @@ jobs: shell: pwsh run: | html-minifier-terser ` - --input-dir _site ` + --input-dir _site ` --output-dir _site ` - --file-ext html ` - --collapse-whitespace ` - --collapse-boolean-attributes ` + --file-ext html ` --remove-comments ` --remove-optional-tags ` - --remove-redundant-attributes ` - --remove-script-type-attributes ` - --remove-style-link-type-attributes ` - --remove-attribute-quotes ` - --use-short-doctype ` --minify-css true ` - --minify-js true ` - --minify-urls true ` - --sort-attributes true ` - --sort-class-name true ` - --decode-entities true + --minify-js true - name: Upload artifact uses: actions/upload-artifact@v4