Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 833 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 833 Bytes

Run

Make sure you have installed the node version and yarn version specified in package.json.

Tip: For node, we recommend that you use nvm: Node Version Manager to switch between versions easily.

Tip: For yarn, you can use yarn set version or npm install yarn@(version).

Remove old compiled node_modules if it exists

rm -rf node_modules

To install all the dependencies

yarn install --frozen-lockfile

To lint the files

yarn lint

To run storybook

cd src/storybook
nvm install 18.18.2 (If it does not exists, install any node version above 18)
nvm use 18.18.2 
yarn run storybook

To build the package

yarn build