# Clean install dependencies without editting lock files
npm ci
# Run Storybook
npm run storybook# Build all: static storybook & react components library
npm run buildYou need to check below contents before publishing
# Build storybook only
npm run build:storybook
# Host result, then check on browser
npm run storybook-static# Build react components only
npm run build:design-kitCheck process using toy-web repository:
# At the root of other repository, in another terminal
cd ../toy-web
# Re-install built library
npm uninstall toy-design-kit
npm install ../toy-design-kit
# Re-run Next.js application
npm run dev