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:
authorAlejandro López <a.lopez.sanchez@outlook.es>2018-11-26 19:04:58 +0300
committerKat Marchán <kzm@zkat.tech>2018-11-26 19:04:58 +0300
commitd3e8a7c7240dd25379a5bcad324a367c58733c73 (patch)
treee475be7094c290accc73317791dfdb73a53879ee /lib
parent4acd45a3d0ce92f9999446226fe7dfb89a90ba2e (diff)
ci: change `console.error` for `console.log` (#79)
Fixes: https://npm.community/t/npm-ci-logs-success-to-stderr/2303 PR-URL: https://github.com/npm/cli/pull/79 Credit: @alopezsanchez Reviewed-By: @zkat
Diffstat (limited to 'lib')
-rw-r--r--lib/ci.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ci.js b/lib/ci.js
index e71d89cfd..03822b952 100644
--- a/lib/ci.js
+++ b/lib/ci.js
@@ -31,7 +31,7 @@ function ci (args, cb) {
.then(
(details) => {
npmlog.disableProgress()
- console.error(`added ${details.pkgCount} packages in ${
+ console.log(`added ${details.pkgCount} packages in ${
details.runTime / 1000
}s`)
}