1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-02 20:00:05 +02:00
This commit is contained in:
s2
2018-05-05 16:42:53 +02:00
parent c06bd35806
commit 2983f68551
2 changed files with 32 additions and 0 deletions

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
# minifyfromhtml
This little helper minifies scripts and css starting from an html file. I made it after asking this question on stackoverflow: https://stackoverflow.com/questions/50188269/minify-js-and-css-in-one-go-starting-from-html/
It takes an input html file, parses it, and outputs all included javascript and css files minified to a file you specify:
```
minifyfromhtml --js=<output js file> --css=<output css file> < <input file>
```