hellobrian/sass-recipes

CSS not updating

Opened this issue · 0 comments

Postcss is using the old css file as input if css-compile is not fast enaugh.

Fix:
use
"sass:build": "npm-run-all -s build-task:*"
instead of
"sass:build": "npm-run-all -p build-task:*"

The s-flag is for is for sequential flow, while p is for parallel.