From 72f1aa7ec3bfaccb87bc687919205acb2324e1b6 Mon Sep 17 00:00:00 2001 From: rameel Date: Thu, 8 Jan 2026 01:49:37 +0500 Subject: [PATCH 1/2] Fix variable expansion in publish workflow --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7a6870b..88f5fb1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,8 +34,8 @@ jobs: - name: Publish packages run: | for dir in dist/*; do - if [ -d '$dir' ]; then - cd '$dir' + if [ -d "$dir" ]; then + cd "$dir" npm publish --access public cd - > /dev/null fi From a97fa1d3ea5daf3ded5ae2c34f469ce5f1a5ae15 Mon Sep 17 00:00:00 2001 From: rameel Date: Thu, 8 Jan 2026 01:59:28 +0500 Subject: [PATCH 2/2] Clean up and formatting --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e3f7e32..3528b82 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@ramstack/alpinegear.js", "type": "module", "version": "1.2.4", - "description": "@ramstack/alpinegear.js provides additional Alpine.js directives, magic functions, and utilities to enhance developer productivity.", + "description": "@ramstack/alpinegear.js provides additional Alpine.js directives, magic functions, and utilities to enhance developer productivity", "author": "Rameel Burhan", "license": "MIT", "repository": {