JOYCO Marquee
pnpm add @joycostudio/marquee
🤖 Automatic Workflows
This template comes with two GitHub Actions workflows (currently disabled for convenience):
-
Release Workflow (.github/workflows/release.yml
): 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.yml
): 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 changeset
This 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:
pnpm version:package
pnpm release
Remember to commit all changes after creating a release.