The Build!

In this final step, we'll add one more script, which will execute the entire process!

Final build #

Lets now write one final script to run everything at once!

Add the following line of code:

"build-css": "npm-run-all compile-sass concat-css prefix-css compress-css"

And our final package.json looks like so:

"scripts": {
  "watch-sass": "node-sass sass/main.scss
...