@trackmatic/yard-ui-common
v3.3.0
Published
## Instructions for version bumping
Readme
Trackmatic UI Common Package
Instructions for version bumping
- run yarn dev-common to build the common package (make sure you're in master or staging branch)
- rename
package.jsonto something temporary - rename
packagejsonForNPM.jsontopackage.json - bump version in both the above files
- global search replace
"@trackmatic/yard-ui-common": "old"to new version"@trackmatic/yard-ui-common": "new" - make sure you have .npmrc file in ROOT (not packages/common). This file is gitignored since it has an access token:
registry=https://registry.npmjs.org/
//registry.npmjs.org/:_authToken=YOUR_TOKEN(get from sean...)
always-auth=true- make sure you
cd packages/common npm login(sean's login for now) - possibly wont need this step if you have added the token above.- run
npm publish --access public
