From 2c14dac082ee5eeeb319189e89a8796f05378c64 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Sat, 1 Aug 2026 00:58:11 +0000 Subject: [PATCH] chore: stage sync-versions output in the lerna version lifecycle lerna runs the "version" lifecycle before committing, then git-adds only the files it manages (package.json/lerna.json/changelogs). The .control, Makefile, and sql/--.{sql,bundle.tar.gz} files that pgpm sync-versions regenerates were left uncommitted after publish. Stage them so they land in the same release commit/tag. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 051efb7a..793622d4 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "lint": "pnpm -r lint", "test": "pnpm -r test", "deps": "pnpm up -r -i -L", - "version": "pgpm sync-versions" + "version": "pgpm sync-versions && git add -A" }, "devDependencies": { "@types/jest": "^30.0.0",