@felipeuribe99/template-common
v1.0.15
Published
This an npm library to share code between the different microservices of this template. In every change that we want to do we need to publish a new version of the library. The steps to publish a new version of the npm library are the followings ones:
Downloads
6
Readme
NPM library for common code between different microservices
This an npm library to share code between the different microservices of this template. In every change that we want to do we need to publish a new version of the library. The steps to publish a new version of the npm library are the followings ones:
- Add the changes to the source
git add .
- Commit your changes with a descriptive message
git commit -m 'A descriptive message of your changes'
- Push your changes to github
git push
- Login to npm with your credentials
npm login
- Update the version of your library
npm version patch
- Build your updated library
npm run build
- Publish the new version of your library
npm publish