diff options
Diffstat (limited to 'deps/npm/lib/npm.js')
-rw-r--r-- | deps/npm/lib/npm.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/npm/lib/npm.js b/deps/npm/lib/npm.js index da39eee2c..2028b34f0 100644 --- a/deps/npm/lib/npm.js +++ b/deps/npm/lib/npm.js @@ -127,6 +127,7 @@ var commandCache = {} , "publish" , "star" + , "stars" , "tag" , "adduser" , "unpublish" @@ -242,6 +243,9 @@ npm.load = function (cli, cb_) { function cb (er) { if (loadErr) return + if (npm.config.get("force")) { + log.warn("using --force", "I sure hope you know what you are doing.") + } npm.config.loaded = true loaded = true loadCb(loadErr = er) |