Skip to content

Commit

Permalink
Ensure build process is part of npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
terakilobyte committed Jun 15, 2015
1 parent a82a8fb commit 988242d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start": "node server/server.js",
"lint": "eslint --ext=.js,.jsx .",
"test": "mocha",
"postinstall": "bower cache clean && bower install"
"postinstall": "bower cache clean && bower install && gulp build"
},
"license": "BSD-3-Clause",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion seed/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var CompletionMonitor = function() {

Challenge.destroyAll(function(err, info) {
if (err) {
console.err(err);
console.error(err);
} else {
console.log('Deleted ', info);
}
Expand Down

0 comments on commit 988242d

Please sign in to comment.