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/ci.js
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2018-03-23 04:23:24 +0300
committerRebecca Turner <me@re-becca.org>2018-03-23 13:46:36 +0300
commit6d1aac42482a5fee7a38310ee2689050f95de056 (patch)
tree2edb3cdab3876945d2c25bdc922bf2a451c5560e /lib/ci.js
parentc8146858d6e51411650ad4dc3bc5e294068ed1dc (diff)
standardize
Diffstat (limited to 'lib/ci.js')
-rw-r--r--lib/ci.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/ci.js b/lib/ci.js
index 6a3183d97..94b01235e 100644
--- a/lib/ci.js
+++ b/lib/ci.js
@@ -27,11 +27,11 @@ function ci (args, cb) {
config: npm.config,
log: npmlog
})
- .run()
- .then(
- (details) => console.error(`added ${details.pkgCount} packages in ${
- details.runTime / 1000
- }s`)
- )
- .then(() => cb(), cb)
+ .run()
+ .then(
+ (details) => console.error(`added ${details.pkgCount} packages in ${
+ details.runTime / 1000
+ }s`)
+ )
+ .then(() => cb(), cb)
}