Skip to content
Lars edited this page Jul 28, 2017 · 1 revision

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
Clone this wiki locally