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

ci.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/ci.js
blob: 1fbb28b570f6fa1a9174c5df079c635041769b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict'

const Installer = require('libcipm')
const npmConfig = require('./config/figgy-config.js')
const npmlog = require('npmlog')

ci.usage = 'npm ci'

ci.completion = (cb) => cb(null, [])

module.exports = ci
function ci (args, cb) {
  return new Installer(npmConfig({ log: npmlog })).run().then(details => {
    npmlog.disableProgress()
    console.log(`added ${details.pkgCount} packages in ${
      details.runTime / 1000
    }s`)
  }).then(() => cb(), cb)
}