UI Components for Custom Links (WIP)
Standard set of UI components to be used in conjunction with the @linktr.ee/create-link
package when developing new Linktree link types.
Installation
yarn add @linktr.ee/ui-link-kit
Publishing a new package version to NPM
To release a new version of the package after making an update:
- Ensure your feature branch is up to date with main and that it's name does NOT match the following naming convention (v.[0-9].[0-9].[0-9]) (This could lead to a namespace conflict with your git tag).
- In the root of the repo, run
yarn changeset
and follow the prompts, entering details of your changes - Run
yarn changeset version
to increment the package version, and merge your changeset message into the main CHANGELOG
file - Commit the changes and push your branch.
- Once your PR has been approved and merged into
main
, checkout main
and pull the latest changes. - Run
yarn changeset tag
which will add a git tag named after the new version (e.g. v0.0.1) (see tag list with git tag
) - Push the git tag to remote with
git push origin <tag-name>
CI will then publish the new package version and deploy storybook