Replies: 1 comment 1 reply
-
Our current implementation of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So, i am a collaborator in np which is one of the most popular libraries out there for publishing npm packages.
We are using
yarn version --new-version <version>
internally to update thepackage.json
for projects. As per a new feature request, the community was trying to implement a feature where a user can supply a custom commit message to this version update commit byyarn
(ornpm
).npm
pretty much only needs us to use the '-m' flag for this, and classicyarn
hadyarn config set version-git-message "v%s"
to set a custom message for the version commit. However, looking through the docs for theberry
version of yarn does not seem to have a feature for this.Does something like this exist and the documentation was missed somehow? Or is this is a missing feature we should think about implementing?
Beta Was this translation helpful? Give feedback.
All reactions