Is it possible to customize the commit message while using npm version patch?
I' d like to change it to :up-arrow: @VERSIONNUMBER
Since npm 2.7.4 (and commit 3703b0b, March 2015):
The message in
npm version -m <message>is mapped to themessageconfig parameter in.npmrc.
That does not seem to be tied specifically to patch only though.
This test shows a config which modifies the commit message:
sign-git-tag=false
message=":bookmark: %s"
You can try and replace :bookmark: with :up-arrow:.