You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
418 B
13 lines
418 B
'use strict'
|
|
var chain = require('slide').chain
|
|
var build = require('../../build.js')
|
|
var npm = require('../../npm.js')
|
|
var packageId = require('../../utils/package-id.js')
|
|
|
|
module.exports = function (staging, pkg, log, next) {
|
|
log.silly('build', packageId(pkg))
|
|
chain([
|
|
[build.linkStuff, pkg.package, pkg.path, npm.config.get('global'), true],
|
|
[build.writeBuiltinConf, pkg.package, pkg.path]
|
|
], next)
|
|
}
|