I created a new angular2 project using the angular CLI(@1.0-webpack.2).
I would like to integrate Sass with my project.
I know that:
- I can use gulp for this
- it's possible to include SCSS in ng2 components
What I'd preffer is to have a specific directory for .scss
files which should be 'watched' and compiled once they change, like .ts
files after ng serve
(terminal).
Thank you