-o as feature
It would be nice to add -o as a feature to the package. I think it's something crutial which is already in node-sass-chokidar.
so this library does't support -o option?is this why my output files(.css, .css.map) all appear in my src dictionary?
I use -o dev-files/ or --output dev-files/,the terminal says 'wrote css file in dev-files' as blew:
but it turns out that the .css and .css.map files are still generated in the source dictionery
same situation here. --output is not supported
For anyone using Create-React-App and wanna extract compiled css files out of javascript bundles, you don't need --output in node-less-chokidar.
Set package.json like the README file suggests, and import css file in your js. Create-React-App did the extract job for you (check out webpack.config.prod.js if you've ejected the CRA). Try npm run build and you'll find hashed css file in your index.html.