(msg)
| 21 | const bin = (name) => path.resolve(__dirname, `../node_modules/.bin/${name}`) |
| 22 | const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts }) |
| 23 | const step = (msg) => console.log(chalk.cyan(msg)) |
| 24 | |
| 25 | async function main() { |
| 26 | let targetVersion |