Skip to content

Commit 52a9c5d

Browse files
fix: publish to npm registry directly instead of Yarn proxy
Yarn's registry proxy (registry.yarnpkg.com) is failing with "Not found" for scoped package publishes. Explicitly set the npm registry in publishConfig to bypass the proxy. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 9912f2f commit 52a9c5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
],
1515
"private": false,
1616
"publishConfig": {
17-
"access": "public"
17+
"access": "public",
18+
"registry": "https://registry.npmjs.org"
1819
},
1920
"scripts": {
2021
"test": "./scripts/test",

0 commit comments

Comments
 (0)