Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
eat(core): use npm commands
Browse files Browse the repository at this point in the history
* feat(core): use npm commands

Replace variety of commands by npm commands.

See #1258

* Remove prestart

* Move bower --config.interactive=false to .bowerrc
  • Loading branch information
simison authored and codydaig committed Jul 9, 2016
1 parent c95bd7d commit 5a91d7d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .bowerrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"directory": "public/lib"
"directory": "public/lib",
"interactive": false
}
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,19 @@
"npm": ">=2.0.0"
},
"scripts": {
"start": "grunt",
"test": "grunt test",
"postinstall": "bower install --config.interactive=false"
"update": "npm update && npm prune && bower install --allow-root && bower prune --allow-root",
"start": "gulp",
"start:prod": "gulp prod",
"start:debug": "gulp debug",
"lint": "gulp lint",
"test": "gulp test",
"test:server": "gulp test:server",
"test:client": "gulp test:client",
"test:e2e": "gulp test:e2e",
"test:watch": "gulp test:server:watch",
"test:watch:onlyChanged": "gulp test:server:watch --onlyChanged",
"postinstall": "bower install --allow-root && bower prune --allow-root",
"generate-ssl-certs": "scripts/generate-ssl-certs.sh"
},
"dependencies": {
"acl": "~0.4.9",
Expand Down

0 comments on commit 5a91d7d

Please sign in to comment.