Publish a package
- Navigate to Components and click Packages in the header
- Click Create
- Enter a version number (e.g.,
1.0.0) - Add an optional description
- Click Publish Package
Versioning
Packages use semantic versioning:MAJOR.MINOR.PATCH
1.0.0→1.0.1for small fixes1.0.0→1.1.0for new features1.0.0→2.0.0for breaking changes
What’s included
A package captures:- All components in your project
- Component code and compiled output
- Assets used by components
- Dependencies on other packages
Packages are immutable
Once published, a package never changes. This is intentional — it guarantees that content using version1.0.0 always renders the same way, even months later.
To make changes, publish a new version. Then update your content types to use the new version when you’re ready.
