Fix "build:all" npm script

The script "build:all" was missing the "npm run" section for the "build:js" part.
This commit is contained in:
Arto Kaitosaari 2016-04-25 11:41:17 +03:00
parent 157dcbbec6
commit d463b26a83

View file

@ -37,6 +37,6 @@
"watch:all": "npm-run-all --parallel watch:css watch:js",
"build:css": "npm run scss && npm run autoprefixer",
"build:js": "npm run uglify",
"build:all": "npm run build:css && build:js"
"build:all": "npm run build:css && npm run build:js"
}
}