[[TOC]]
ui-components
contains shared re-useable react components. It also presents these using Storybook.
To get a local copy up and running, follow these simple example steps.
- Clone the repo
git clone
- Install node dependencies
npm i
- Start the local dev server with the following command
npm run storybook:dev
- Open the URL - http://localhost:6060
# Install dependencies
npm install
# Run storybook locally (watches for changes in stories and all the other code)
npm run storybook:dev
# Run command to create build
npm run build
# Increment version (make this on master branch after you have merged your MR and pulled on master)
npm version patch # can be other values, see: npm version -h
# If you want to test your changes in discovery or content, it's possible to create
# pre-release or prepatch version instead
# Publish to npm (also builds the code)
npm publish