-
Notifications
You must be signed in to change notification settings - Fork 4
Publishing
maximilianweidenauer edited this page Feb 16, 2024
·
1 revision
In this section I will show you how to publish new versions to the npm repository, so lib user can download them.
- Make sure you are logged into npm with
npm login
- No uncommitted changes
To update a patch version of the reactUI from eg. 2.2.3 to 2.2.4 run the command npm run build-patch
.
To update a minor version of the reactUI from eg. 2.2.3 to 2.3.0 run the command npm run build-minor
.
To update a major version of the reactUI from eg. 2.2.3 to 3.0.0 run the command npm run build-major
.
After publishing a version make sure to commit the changes after and update the version in the other projects which use the reactUI if wanted