We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--github false
node v20.13.0
see below
usage
pnpm changelogen --clean --github false --release --minor
with sync release, later tag push will report tag already exists (and I need to test before push, so I don't want --push)
sync release
so I need to disable sync release. I found the code here https://github.com/unjs/changelogen/blob/v0.5.5/src/commands/default.ts#L141
but this still not working because mri(argv) will treat --github=false / --github false as string, argv.github === 'false'
mri(argv)
--github=false
argv.github === 'false'
https://runkit.com/magicdawn/665f44d7aa755f00088dfac6
and -h / --help / help does not work, use a better cli lib please, clipanion or cac
-h
--help
help
No response
The text was updated successfully, but these errors were encountered:
and another issue --minor did not working, v0.0.2 became v0.0.3
--minor
Sorry, something went wrong.
No branches or pull requests
Environment
node v20.13.0
Reproduction
see below
Describe the bug
usage
pnpm changelogen --clean --github false --release --minor
with
sync release
, later tag push will report tag already exists(and I need to test before push, so I don't want --push)
so I need to disable sync release. I found the code here
https://github.com/unjs/changelogen/blob/v0.5.5/src/commands/default.ts#L141
but this still not working because
mri(argv)
will treat--github=false
/--github false
as string,argv.github === 'false'
https://runkit.com/magicdawn/665f44d7aa755f00088dfac6
and
-h
/--help
/help
does not work, use a better cli lib please, clipanion or cacAdditional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered: