@sjoedwards/common
v1.0.45
Published
## To release a new minor version
Readme
Common
To release a new minor version
- Commit to master
- Checkout master (with a clean working tree)
- npm login
- yarn run pub
Will do a few things:
- yarn version --patch: increments the package.json by 0.0.1, commits and creates a tag
- yarn postversion: pushes tag and tag commit
- yarn run build: Builds the package
- npm run publish: Publishes the package to npm using the latest tag (i.e. the one just created)
To locally develop in other applications
Warning: Won't work inside kubernetes clusters / docker containers
cd common
npm link
cd ../[module]
npm link @sjoedwards/common