mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-14 15:16:18 +00:00
17 lines
517 B
JavaScript
17 lines
517 B
JavaScript
'use strict'
|
|
|
|
const BB = require('bluebird')
|
|
|
|
const finished = BB.promisify(require('mississippi').finished)
|
|
const packageId = require('../../utils/package-id.js')
|
|
const pacote = require('pacote')
|
|
const pacoteOpts = require('../../config/pacote')
|
|
|
|
module.exports = fetch
|
|
function fetch (staging, pkg, log, next) {
|
|
log.silly('fetch', packageId(pkg))
|
|
const opts = pacoteOpts({integrity: pkg.package._integrity})
|
|
return finished(pacote.tarball.stream(pkg.package._requested, opts))
|
|
.then(() => next(), next)
|
|
}
|