Make sure to use pnpm
.
pnpm run start
runs tsup in watch mode and starts Storybookpnpm run build
build and package your addon codepnpm run storybook:watch
runs nodemon in watch mode so it reruns Storybook on changes. This is useful when testing the actual addon (as we cannot have HMR for addon changes) rather than just stories in Storybook
To trigger this addon locally, do the following:
- run
pnpm install && pnpm run build
- run
pnpm run storybook
- Go to http://localhost:6006/?path=/onboarding
- You should now see the onboarding appearing. Have fun 👻
This project is configured to use auto for release management. It generates a changelog and pushes it to both GitHub and npm. Therefore, you need to configure access to both:
NPM_TOKEN
Create a token with both Read and Publish permissions.GH_TOKEN
Create a token with therepo
scope.
Then open your package.json
and edit the following fields:
name
author
repository
To use auto
locally create a .env
file at the root of your project and add your tokens to it:
GH_TOKEN=<value you just got from GitHub>
NPM_TOKEN=<value you just got from npm>
If you check on GitHub, you’ll now see a set of labels that auto
would like you to use. Use these to tag future pull requests.
To create a release locally you can run the following command, otherwise the GitHub action will make the release for you.
pnpm run release
That will:
- Build and package the addon code
- Bump the version
- Push a release to GitHub and npm
- Push a changelog to GitHub