Skip to content

Commit

Permalink
Fix "build:all" npm script
Browse files Browse the repository at this point in the history
The script "build:all" was missing the "npm run" section for the "build:js" part.
  • Loading branch information
artokai committed Apr 25, 2016
1 parent 157dcbb commit d463b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit d463b26

Please # to comment.