Skip to content

Commit

Permalink
Merge pull request #11 from permaficus/dev-branch
Browse files Browse the repository at this point in the history
Dev branch
  • Loading branch information
permaficus authored Jun 5, 2024
2 parents 1bd1da1 + 006a1e6 commit 4ae2b8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enmav",
"version": "0.4.18",
"version": "0.5.20",
"main": "pub/src/index.js",
"scripts": {
"build:tsc": "rm -rf pub && node vupd.js && tsc"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ program
.option('--minor-max <number>', 'maximum number of minor before reset to 0')
.option('--init')
.option('--update-version')
.addOption(new Option('--bundler <bundler>', 'package bundler').choices(['tsc', 'rollup', 'tsup', 'node']))
.addOption(new Option('--bundler <bundler>', 'package bundler').choices(['tsc', 'rollup', 'tsup', 'commonjs']))
.action(async (options) => {
if (options.updateVersion) {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/libs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export type UpdateArguments = {
}
export type Options = UpdateArguments
export type BundlerOptions = {
bundler: 'tsc' | 'rollup' | 'tsup' | 'node'
bundler: 'tsc' | 'rollup' | 'tsup' | 'commonjs'
}

0 comments on commit 4ae2b8a

Please sign in to comment.