diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-07-11 13:25:14 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-07-11 13:25:14 +0200 |
commit | bdcbd5d764117314d1c396fa41e09b9419a70753 (patch) | |
tree | e2e921088e5d172ab9c0ec3315860a9f9067facb /Makefile | |
parent | 2e242fadda12645e2cbe24e19ba5afcc85db6248 (diff) | |
download | tres-bdcbd5d764117314d1c396fa41e09b9419a70753.tar.gz tres-bdcbd5d764117314d1c396fa41e09b9419a70753.tar.bz2 tres-bdcbd5d764117314d1c396fa41e09b9419a70753.zip |
fix: Add build file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a5cbc8e --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |