hellobrian / sass-recipes

Sass things that I do all the time or should remember to do because googling tutorials gets old
155 stars 15 forks source link

CSS not updating #11

Open rttmax opened 5 years ago

rttmax commented 5 years ago

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.