Skip to content

Commit

Permalink
Take @alpinejs/ui out of beta
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Nov 15, 2024
1 parent 238f200 commit 8cc3aac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/ui",
"version": "3.14.3-beta.0",
"version": "3.14.3",
"description": "Headless UI components for Alpine",
"homepage": "https://alpinejs.dev/components#headless",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ function writeNewAlpineVersion() {
writeToPackageDotJson('alpinejs', 'version', version)
console.log('Bumping alpinejs package.json: '+version)

writeToPackageDotJson('ui', 'version', version)
console.log('Bumping @alpinejs/ui package.json: '+version)

writeToPackageDotJson('csp', 'version', version)
console.log('Bumping @alpinejs/csp package.json: '+version)

Expand Down Expand Up @@ -86,6 +89,9 @@ function publish() {
console.log('Publishing alpinejs on NPM...');
runFromPackage('alpinejs', 'npm publish')

console.log('Publishing @alpinejs/ui on NPM...');
runFromPackage('ui', 'npm publish --access public')

console.log('Publishing @alpinejs/csp on NPM...');
runFromPackage('csp', 'npm publish --access public')

Expand Down

0 comments on commit 8cc3aac

Please sign in to comment.