From eebe534522653f600b4893068ff2a8f89b6a6abc Mon Sep 17 00:00:00 2001 From: akudev Date: Tue, 12 May 2026 15:08:39 +0200 Subject: [PATCH] chore(release): remove unsupported --provenance flag Lerna 9 handles provenance automatically when it detects GitHub Actions, so the explicit CLI flag is not needed and causes a yargs strict error. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9a5911c..12bdd9c 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "scripts": { "release:version": "lerna version", "release:version-simulate": "lerna version --no-push --no-git-tag-version", - "release:publish": "lerna publish from-git --yes --no-verify-access --provenance", - "release:publish-manual": "lerna publish from-package --yes --no-verify-access --provenance", + "release:publish": "lerna publish from-git --yes --no-verify-access", + "release:publish-manual": "lerna publish from-package --yes --no-verify-access", "build": "lerna run build", "preci": "lerna run build", "ci": "npm-run-all format:validate ci:subpackages",