Finished migration to commander.js, updated table rendering engine to use code blocks for resource Guids.
All checks were successful
build / build (push) Successful in 8s

This commit is contained in:
2026-03-10 07:41:47 +01:00
parent 47a8b19748
commit 047e342842
9 changed files with 90 additions and 138 deletions

View File

@@ -36,8 +36,9 @@ const program = new Command();
program
.name('bump-patch')
.description('Bump the version in package.json')
.addOption(new Option('-r, --release-type <type>', 'Release type (major, minor, patch)', 'patch')
.choices('release-type', ['major', 'minor', 'patch'])
.addOption(new Option('-r, --release-type <type>', 'Release type (major, minor, patch)')
.choices(['major', 'minor', 'patch'])
.default('patch')
)
.parse(process.argv);