Skip to content

Commit 936240a

Browse files
committed
fix: make shared package private and update changeset config
- Add private: true to @mcp-pointer/shared to prevent npm publishing - Remove package linking in changeset config since shared is now private - Add changeset for server-only release workflow fix
1 parent f002983 commit 936240a

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.changeset/config.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"changelog": "@changesets/cli/changelog",
44
"commit": false,
55
"fixed": [],
6-
"linked": [
7-
["@mcp-pointer/server", "@mcp-pointer/shared", "@mcp-pointer/chrome-extension"]
8-
],
6+
"linked": [],
97
"access": "public",
108
"baseBranch": "main",
119
"updateInternalDependencies": "patch",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"@mcp-pointer/server": patch
3+
---
4+
5+
Fix release workflow by making shared package private
6+
7+
- Make @mcp-pointer/shared private to prevent npm publishing attempts
8+
- Update changeset configuration to remove package linking
9+
- Only @mcp-pointer/server will be published to npm going forward

packages/shared/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@mcp-pointer/shared",
33
"version": "0.3.1",
4-
"type": "module"
4+
"type": "module",
5+
"private": true
56
}

0 commit comments

Comments
 (0)