From 319d4571090743995417f02b610d56f7c1a95f09 Mon Sep 17 00:00:00 2001 From: Max Rolon Date: Fri, 27 Jul 2018 10:15:27 -0400 Subject: [PATCH] Adds npm i to end of install process --- install.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.js b/install.js index 2579bed..ff9def7 100644 --- a/install.js +++ b/install.js @@ -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`) } }