From d1c36a99e3a7bdeffaa6e623d88daccde7ecfa04 Mon Sep 17 00:00:00 2001 From: John Haley Date: Mon, 16 Mar 2015 12:22:05 -0700 Subject: [PATCH] Download all dev dependencies before build Some dev dependencies were slipping through the cracks during an atom-shell or nw.js install. For now we'll just download all dev dependencies before a build just in case. --- lifecycleScripts/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lifecycleScripts/install.js b/lifecycleScripts/install.js index c5a8f0bae..9a39e02a2 100644 --- a/lifecycleScripts/install.js +++ b/lifecycleScripts/install.js @@ -110,7 +110,7 @@ function build() { target = "--target=" + nwVersion; } - return exec("npm install " + builder) + return exec("npm install --ignore-scripts") .then(function() { builder = path.resolve(".", "node_modules", ".bin", builder); builder = builder.replace(/\s/g, "\\$&");