From 001d9c31645fd3f957189832a0ac7d12b9a4476c Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Tue, 3 Mar 2026 14:25:08 -0800 Subject: [PATCH] fix: mark beta-tools as private to skip npm publish beta-tools is an internal CLI tool and should not be published to npm. The beta publish workflow was failing with E404 because the @bitgo-beta/beta-tools package does not exist on the registry and trusted publishing cannot create new packages. Ticket: BTC-0 --- modules/beta-tools/package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/beta-tools/package.json b/modules/beta-tools/package.json index 277c0c74e2..7a0fbecc5e 100644 --- a/modules/beta-tools/package.json +++ b/modules/beta-tools/package.json @@ -36,8 +36,6 @@ "yarn eslint --fix" ] }, - "publishConfig": { - "access": "public" - }, + "private": true, "license": "MIT" }