mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-07 23:37:21 +00:00
push all website files
This commit is contained in:
18
website/node_modules/npm/lib/install/action/extract-worker.js
generated
vendored
Normal file
18
website/node_modules/npm/lib/install/action/extract-worker.js
generated
vendored
Normal file
@@ -0,0 +1,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.log = npmlog
|
||||
}
|
||||
opts.log.level = opts.loglevel || opts.log.level
|
||||
BB.resolve(extract(spec, extractTo, opts)).nodeify(cb)
|
||||
}
|
Reference in New Issue
Block a user