summaryrefslogtreecommitdiff
path: root/deps/npm/lib/install/action/extract-worker.js
blob: 24508c780495ebd97d717b5db561e12364ed9d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict'

const BB = require('bluebird')

const extract = require('pacote/extract')
const npmlog = require('npmlog')

module.exports = (args, cb) => {
  const parsed = typeof args === 'string' ? JSON.parse(args) : args
  const spec = parsed[0]
  const extractTo = parsed[1]
  const opts = parsed[2]
  if (!opts.log && opts.loglevel) {
    opts.log = npmlog
    opts.log.level = opts.loglevel
  }
  BB.resolve(extract(spec, extractTo, opts)).nodeify(cb)
}