Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-10-07 03:16:49 +0300
committerRebecca Turner <me@re-becca.org>2015-10-16 02:19:05 +0300
commit4f503668227844a22dad6ef2a00f9f9d096b27e8 (patch)
treef2554de83b51ec975922e0b82e487bb46b4c393a /lib
parent25a234b4595ee3f1a2c09e2a39e3c238aa642557 (diff)
deps: mark our installable flag as internal
PR-URL: https://github.com/npm/npm/pull/9928
Diffstat (limited to 'lib')
-rw-r--r--lib/install/deps.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/install/deps.js b/lib/install/deps.js
index c55b434d4..d001136a5 100644
--- a/lib/install/deps.js
+++ b/lib/install/deps.js
@@ -408,10 +408,10 @@ function resolveWithNewModule (pkg, tree, log, next) {
}))
}
- if (!pkg.installable) {
+ if (!pkg._installable) {
log.silly('resolveWithNewModule', packageId(pkg), 'checking installable status')
return isInstallable(pkg, iferr(next, function () {
- pkg.installable = true
+ pkg._installable = true
resolveWithNewModule(pkg, tree, log, next)
}))
}