You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
364 B
JavaScript
15 lines
364 B
JavaScript
exports = module.exports = runLifecycle
|
|
|
|
const lifecycleOpts = require('../config/lifecycle')
|
|
const lifecycle = require('npm-lifecycle')
|
|
|
|
function runLifecycle (pkg, stage, wd, moreOpts, cb) {
|
|
if (typeof moreOpts === 'function') {
|
|
cb = moreOpts
|
|
moreOpts = null
|
|
}
|
|
|
|
const opts = lifecycleOpts(moreOpts)
|
|
lifecycle(pkg, stage, wd, opts).then(cb, cb)
|
|
}
|