(bin, args, opts = {})
| 21 | const inc = (i) => semver.inc(currentVersion, i, preId); |
| 22 | const bin = (name) => path.resolve(__dirname, '../node_modules/.bin/' + name); |
| 23 | const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts }); |
| 24 | const getPkgRoot = (pkg) => path.resolve(__dirname, '../packages/' + pkg); |
| 25 | |
| 26 | async function main() { |