From d463b26a836bc198dcf4af1e6eddb03a652439a3 Mon Sep 17 00:00:00 2001 From: Arto Kaitosaari Date: Mon, 25 Apr 2016 11:41:17 +0300 Subject: [PATCH] Fix "build:all" npm script The script "build:all" was missing the "npm run" section for the "build:js" part. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8634b25d..307b58c3 100644 --- a/package.json +++ b/package.json @@ -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" } }