Skip to content

Commit 8fb8b4a

Browse files
committedJun 26, 2015
install: Move more npm config into the installer object
1 parent 3cdbce3 commit 8fb8b4a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎lib/install.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function Installer (where, dryrun, args) {
191191
this.noPackageJsonOk = !!args.length
192192
this.topLevelLifecycles = !args.length
193193
this.npat = npm.config.get('npat')
194-
this.dev = !npm.config.get('production')
194+
this.dev = npm.config.get('dev') || !npm.config.get('production')
195195
this.rollback = npm.config.get('rollback')
196196
this.link = npm.config.get('link')
197197
}
@@ -313,8 +313,6 @@ Installer.prototype.loadAllDepsIntoIdealTree = function (cb) {
313313
log.silly('install', 'loadAllDepsIntoIdealTree')
314314
var saveDeps = getSaveType(this.args)
315315

316-
var dev = npm.config.get('dev') || !npm.config.get('production')
317-
318316
var cg = this.progress.loadAllDepsIntoIdealTree
319317
var installNewModules = !!this.args.length
320318
var steps = []
@@ -327,7 +325,7 @@ Installer.prototype.loadAllDepsIntoIdealTree = function (cb) {
327325
} else {
328326
steps.push(
329327
[loadDeps, this.idealTree, cg.newGroup('loadDeps')])
330-
if (dev) {
328+
if (this.dev) {
331329
steps.push(
332330
[loadDevDeps, this.idealTree, cg.newGroup('loadDevDeps')])
333331
}

0 commit comments

Comments
 (0)
Please sign in to comment.