(cmd: string)
| 5 | import { deleteReleasePlan, loadReleasePlan, releasePlanPath } from './utils/release-plan' |
| 6 | |
| 7 | function run(cmd: string) { |
| 8 | execSync(cmd, { stdio: 'inherit' }) |
| 9 | } |
| 10 | |
| 11 | function getWorkspacePackageInfo() { |
| 12 | const map = new Map<string, { private: boolean, hasReleaseScript: boolean }>() |