@joycostudio/lenis
v0.0.4
Published
Just like lenis but with zustand
Downloads
11
Readme
JOYCO Lenis
Just like lenis but with zustand.
pnpm add @joycostudio/lenis🤖 Automatic Workflows
GitHub Actions workflows:
Release Workflow (
.github/workflows/release): Automates the release process using Changesets. When enabled, it will automatically create release pull requests and publish to npm when changes are pushed to the main branch.Publish Any Commit (
.github/workflows/publish-any-commit): A utility workflow that can build and publish packages for any commit or pull request.
🦋 Version Management
This library uses Changesets to manage versions and publish releases. Here's how to use it:
Adding a changeset
When you make changes that need to be released:
pnpm changesetThis will prompt you to:
- Select which packages you want to include in the changeset
- Choose whether it's a major/minor/patch bump
- Provide a summary of the changes
Creating a release
To create a new version and update the changelog:
# 1. Create new versions of packages
pnpm version:package
# 2. Release (builds and publishes to npm)
pnpm releaseRemember to commit all changes after creating a release.
