mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
chore: update packagejson and also release script
This commit is contained in:
parent
86cbad4a47
commit
a167e7d256
1 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,8 @@ if (latestTag && semver.gt(latestTag, currentVersion)) {
|
|||
}
|
||||
|
||||
// Parse command line arguments (support flags like --dry-run anywhere)
|
||||
const args = process.argv.slice(2);
|
||||
// Filter out the '--' separator that npm/pnpm uses for argument passing
|
||||
const args = process.argv.slice(2).filter(arg => arg !== '--');
|
||||
const knownIncrements = new Set(['patch', 'minor', 'major', 'continue']);
|
||||
let increment = undefined;
|
||||
const argParts = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue