@joycostudio/susano
v0.0.3
Published
Asset load orchestration made easy
Downloads
5
Readme
JOYCO Susano
Asset load orchestration made easy.
pnpm add @joycostudio/susano🤖 Automatic Workflows
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 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.
