Configure bumpversion to avoid modifying daemon version in package.json
Before, it was matching *any* instance of the current app version string, so if the daemon version configured in app/package.json happened to match the app version, it would get bumped. This updates the bumpversion config to only update the line containing the package version itself.
This commit is contained in:
parent
05783db1ba
commit
130dfd7a0a
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,10 @@ values =
|
|||
production
|
||||
|
||||
[bumpversion:file:app/package.json]
|
||||
search = "version": "{current_version}"
|
||||
replace = "version": "{new_version}"
|
||||
|
||||
[bumpversion:file:ui/package.json]
|
||||
search = "version": "{current_version}"
|
||||
replace = "version": "{new_version}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue