This commit is contained in:
Kevin Sawicki 2015-02-10 18:03:51 -08:00
parent b09a9c5f95
commit 0d91b92bd1

View File

@ -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')};