Skip to content

Commit

Permalink
Adds npm i to end of install process
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Rolon committed Jul 27, 2018
1 parent 1042680 commit 319d457
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class Installer {
}

install (dependencies) {
return this.exec(`cd ${process.cwd()} && npm i -D ${dependencies}`)
// Last npm i is to recreate full .bin folder
return this.exec(`cd ${process.cwd()} && npm i -D ${dependencies} && npm i`)
}
}

Expand Down

0 comments on commit 319d457

Please sign in to comment.