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
diff options
context:
space:
mode:
authorTim Oxley <secoif@gmail.com>2016-08-09 10:11:48 +0300
committerRebecca Turner <me@re-becca.org>2016-10-07 01:10:17 +0300
commit1089878f58977559414c8a9addfc69a9c68905b0 (patch)
treeee2e6009a56a16aa615fc903b51c6c7fffae56ca
parentbf3bd1e4347ee2c5de08d23558c4444749178c8b (diff)
filter-invalid-actions: Log 'skipping action' as 'verbose'
Rather than as 'warn'. This is papering over a deeper issue which will be resolved by making symlinks entirely opaque. Fixes: #9999 Credit: @timoxley Reviewed-By: @iarna PR-URL: https://github.com/npm/npm/pull/13613
-rw-r--r--lib/install/filter-invalid-actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/install/filter-invalid-actions.js b/lib/install/filter-invalid-actions.js
index 2c5d430c5..beac30b7b 100644
--- a/lib/install/filter-invalid-actions.js
+++ b/lib/install/filter-invalid-actions.js
@@ -24,7 +24,7 @@ module.exports = function (top, differences, next) {
if (pkg.isInLink || (pkg.parent && (pkg.parent.target || pkg.parent.isLink))) {
// we want to skip warning if this is a child of another module that we're removing
if (!pkg.parent.removing) {
- log.warn('skippingAction', 'Module is inside a symlinked module: not running ' +
+ log.verbose('skippingAction', 'Module is inside a symlinked module: not running ' +
cmd + ' ' + packageId(pkg) + ' ' + path.relative(top, pkg.path))
}
} else {