From 96eef18f70e55d364719a262da3c7b5ef14cb5fa Mon Sep 17 00:00:00 2001 From: Derek Meegan Date: Wed, 25 Feb 2026 17:06:04 -0800 Subject: [PATCH] fix: use npm publish instead of yarn publish yarn publish hits registry.yarnpkg.com which fails for scoped packages. Switch back to npm publish which uses the configured npmjs.org registry. Co-Authored-By: Claude Opus 4.6 --- bin/publish-npm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish-npm b/bin/publish-npm index 45e8aa80..212acc99 100644 --- a/bin/publish-npm +++ b/bin/publish-npm @@ -58,4 +58,4 @@ else fi # Publish with the appropriate tag -yarn publish --tag "$TAG" +npm publish --tag "$TAG"