I have following script in package.json, using with node-sass-chokidar, tried multiple combinations but not working. here is my current script:
build-scss": "npm run update-version && rimraf bundles/* && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o dist/css
and
"watch-scss": "npm run build-scss && node-sass-chokidar --watch ./src/ --recursive --include-path ./node_modules -o dist/css"
Want to replace the node-sass-chokidar with just, sass
aka dart-sass
.
Not able to figure out the right syntax, which can fulfil the existing requirements. I tried --load-path
I tried the input
: output
syntax. no luck.