blob: a5cbc8e6ccc1a76a2805cf952427cbfae271e8ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
all:
-mkdir public
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 \
index.html > public/index.html
|