From 0d91b92bd10d563bd819968f4c8d696154ec5f92 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 10 Feb 2015 18:03:51 -0800 Subject: [PATCH] :art: --- script/bootstrap | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index 25fe54af4..d6160c28f 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -37,7 +37,18 @@ function bootstrap() { var initialNpmCommand = fs.existsSync(npmPath) ? npmPath : 'npm'; var npmFlags = ' --userconfig=' + path.resolve('.npmrc') + ' '; - var packagesToDedupe = ['fs-plus', 'humanize-plus', 'oniguruma', 'roaster', 'season', 'grim', 'q', 'semver', 'atom-space-pen-views', 'temp']; + var packagesToDedupe = [ + 'atom-space-pen-views', + 'fs-plus', + 'grim', + 'humanize-plus', + 'oniguruma', + 'roaster', + 'season', + 'semver', + 'q', + 'temp' + ]; var buildInstallCommand = initialNpmCommand + npmFlags + 'install'; var buildInstallOptions = {cwd: path.resolve(__dirname, '..', 'build')};