From 0663889a60d796a61e197a5a61f99de672d7fd40 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 27 Apr 2016 10:45:31 -0400 Subject: [PATCH] Fix "build:all" npm script --- 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" } }