UNPKG

node-publisher

Version:

A configurable release automation tool inspired by create-react-app and Travis CI.

12 lines (9 loc) 250 B
const publish = ({ nextVersion, execCommand, preid }) => { const publishCommand = preid ? `lerna publish ${nextVersion} --preid ${preid}` : `lerna publish ${nextVersion}`; execCommand(publishCommand); }; module.exports = { publish };