Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 711 Bytes

File metadata and controls

42 lines (27 loc) · 711 Bytes

APISuite Common Components

Install

npm i @apisuite/apisuite-common-components --save

Developing

Create the new component, create the stories and visualize it with storybook.

npm i
npm run storybook

Build

To build the package manually run

npm run build

or, to watch the project for changes and rebuilding it:

npm run build:watch

Release a new version

To release a new version use npm's version command.

For instance, to create a patch release, run:

npm version patch

This will build the project, increment the version's patch field, commit these new changes and tag the commit.