Skip to content
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.

Latest commit

 

History

History
18 lines (12 loc) · 507 Bytes

DEVELOPMENT.md

File metadata and controls

18 lines (12 loc) · 507 Bytes

Development Guidelines

Publishing a new package

To create a new version of the package, we run the following command manually:

$ npm version [major|minor|patch]

This will bump the version in the package.json and package-lock.json files, commit it to git and tag it with the same version. If we push this using:

$ git push origin main --follow-tags

both the commit and the tag are pushed and the Github Actions workflow will kick in to publish the package to the NPM Registry.