I've been on a quest to find a solution that covers the following requirements:
Convert SASS to CSS
- Post-process CSS
- Minify CSS
- Move it to a different location
Bundle all Javascript into one file
- Create compatibility for older browsers
- Treeshake
- Minify JS
- Move it to a different folder
HTML
- Minify and move to another directory
Automate process whenever SASS, JS, or HTML files change
- Refresh the browser automatically
Currently, I have managed to create a unified package using RolloutJS, but I prefer linking CSS as an external file from the HTML document.
Any advice or suggestions? Thank you in advance.