From ec957fd2b07d9b0228b7fd61dfb5e7db7332f9e4 Mon Sep 17 00:00:00 2001 From: DizzyMii Date: Mon, 4 May 2026 10:36:35 -0600 Subject: [PATCH] chore(packages): add publishConfig.access=public to scoped adapters Scoped npm packages default to private; without this, the first publish requires the changesets action to pass --access public, which it does not. Setting publishConfig at the package level is the durable fix. Co-Authored-By: Claude Opus 4.7 --- packages/adapter-anthropic/package.json | 3 +++ packages/adapter-openai-compat/package.json | 3 +++ packages/graph/package.json | 3 +++ 3 files changed, 9 insertions(+) diff --git a/packages/adapter-anthropic/package.json b/packages/adapter-anthropic/package.json index c238d75..11ddec3 100644 --- a/packages/adapter-anthropic/package.json +++ b/packages/adapter-anthropic/package.json @@ -7,6 +7,9 @@ "sideEffects": false, "engines": { "node": ">=20" }, "files": ["dist", "README.md", "LICENSE"], + "publishConfig": { + "access": "public" + }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, diff --git a/packages/adapter-openai-compat/package.json b/packages/adapter-openai-compat/package.json index 9d70742..005cda4 100644 --- a/packages/adapter-openai-compat/package.json +++ b/packages/adapter-openai-compat/package.json @@ -7,6 +7,9 @@ "sideEffects": false, "engines": { "node": ">=20" }, "files": ["dist", "README.md", "LICENSE"], + "publishConfig": { + "access": "public" + }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, diff --git a/packages/graph/package.json b/packages/graph/package.json index 254a1f6..d92540f 100644 --- a/packages/graph/package.json +++ b/packages/graph/package.json @@ -7,6 +7,9 @@ "sideEffects": false, "engines": { "node": ">=20" }, "files": ["dist", "README.md", "LICENSE"], + "publishConfig": { + "access": "public" + }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },