()
| 517 | } |
| 518 | |
| 519 | async function publishOnly() { |
| 520 | const targetVersion = positionals[0] |
| 521 | if (targetVersion) { |
| 522 | updateVersions(targetVersion) |
| 523 | } |
| 524 | await buildPackages() |
| 525 | await publishPackages(currentVersion) |
| 526 | } |
| 527 | |
| 528 | const fnToRun = args.publishOnly ? publishOnly : main |
| 529 |
nothing calls this directly
no test coverage detected