From 4eb4efffa21d0d977eaf623501383bdacbe876fe Mon Sep 17 00:00:00 2001 From: Sebastian Espei Date: Mon, 30 Mar 2026 16:02:57 +0200 Subject: [PATCH] fix: update git add command to only include package.json --- scripts/release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.js b/scripts/release.js index a620c0e..5824d20 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -76,7 +76,7 @@ function main() { console.log(`📦 Updated version to ${newVersion}`); // 2. Add and commit changes - execSync('git add package.json *.html src/pages/*.html', { + execSync('git add package.json', { stdio: 'inherit', }); execSync(`git commit -m "Release v${newVersion}"`, { stdio: 'inherit' });