(args = [])
| 9 | |
| 10 | export const ls = async () => JSON.parse((await execLerna('ls --json')).stdout); |
| 11 | export const exec = async (args = []) => await runLerna(['exec', ...args]); |
| 12 | export const bootstrap = async (args = []) => runLerna(['bootstrap', ...args]); |