()
| 4 | import * as semver from "@std/semver"; |
| 5 | |
| 6 | function showHelp() { |
| 7 | // deno-lint-ignore no-console |
| 8 | console.log(` |
| 9 | Usage: deno run -A release.ts <major|minor|patch|...> |
| 10 | `); |
| 11 | } |
| 12 | |
| 13 | function exitError(msg: string): never { |
| 14 | // deno-lint-ignore no-console |