@quotedynamic/common
v1.0.283
Published
Quote Dynamic type contracts
Readme
How to publish a package
Automatic way (will be implemented later on ci level)
$ git add .
$ git commit -m "chore: test message"
$ git push origin developmentThe package will be published by semantic release on ci level.
By hand
First need to commit changes
$ git add .
$ git commit -m "chore: test message"Then need to login to npm if not already logged in
$ npm loginThen version and publish a package and push a commits
$ npm run version-and-publish-by-hand
$ git push origin developmentPackage usage
To use this package in other services, it needs to be installed
$ npm i @quotedynamic/commonThen simply import the needed data
$ import { UserSignUpOrganizationPayload } from '@quotedynamic/common'To update the package in the services use
$ npm update @quotedynamic/common