I've been searching for a way that would include following things:
Process SASS to CSS
- PostProcess CSS
- Minify CSS
- Copy it to a different folder
Package all Javascript to one file
- Create backward compatible for older browsers
- Treeshake
- Minify JS
- Copy it to a different folder
HTML
- Minify it and copy it to a different folder
Every time a SASS, JS, HTML file changes process would happen
- Browser would be refreshed
So far I have got to make a single package using RolloutJS but the problem is that I would like to include CSS as an external file linked from HTML file.
Any tips or tricks? Thank you in advance.