Skip to content

Commit

Permalink
Run bootstrap as a postinstall script (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade authored Dec 7, 2016
1 parent e810a27 commit f121bff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"private": true,
"scripts": {
"bootstrap": "npm i && npm run bootstrap-no-i",
"bootstrap": "npm i",
"bootstrap-no-i": "asini bootstrap",
"test": "asini run test",
"clean": "rimraf asini-debug.log && asini run clean",
"nuke": "asini clean && rm -r node_modules",
"changelog": "asini-changelog",
"debug": "cat asini-debug.log && for d in packages/*/npm-debug.log*; do echo $d; cat $d; done"
"debug": "cat asini-debug.log && for d in packages/*/npm-debug.log*; do echo $d; cat $d; done",
"postinstall": "npm run bootstrap-no-i"
},
"devDependencies": {
"asini": "1.3.0",
Expand Down

0 comments on commit f121bff

Please sign in to comment.