You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In general, every npm run build automatically updates the version in your package.json to a new patch-version.
In case you want to set a specific version yourself, simply run:
$ npm run build -- -- --type=minor # New minor-version = 0.0.3 -> 0.1.0
$ npm run build -- -- --type=major # New major-version = 0.4.33 -> 1.0.0
$ npm run build -- -- --version=2.0.1 # Specific Versionnumber