How you upgrade depends on how you're using nuartz.
If you cloned the repo (starter template)
Pull the latest changes:
git pull origin main
bun installIf you have local changes that conflict with the updates, you may need to resolve merge conflicts manually.
If you get a conflict mid-merge, you can use git merge --abort to cancel and review what changed before trying again.
If you installed the npm package
Update the package:
bun update nuartzAutomatic updates with Dependabot
If you want to be notified when a new version of nuartz is released, you can set up Dependabot in your repo. It will automatically open a PR when a new version is available.
Create .github/dependabot.yml in your project:
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weeklyThat's it. Dependabot will check for updates weekly and open a PR like "Bump nuartz from 0.1.4 to 0.1.5" when a new version is published. Review the changelog, merge the PR, and you're up to date.
Checking for breaking changes
Before upgrading, check the changelog or releases page for any breaking changes that may require updates to your content or configuration.