()
| 3 | import { execSync } from 'child_process' |
| 4 | |
| 5 | async function publishLocal() { |
| 6 | const packages = getPackages() |
| 7 | for (const p of packages) { |
| 8 | const val = execSync(`cd packages/${p} && yalc publish --push`).toString() |
| 9 | console.log(`${p}: ${val}`) |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Set up the command line tool and options. |
no test coverage detected