-
Notifications
You must be signed in to change notification settings - Fork 631
chore: update mcp package with changes from published package #6481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Updates the experimental MCP package configuration to align with the published npm package, including adding a description and properly formatting the binary entry point.
- Added package description explaining its purpose as an MCP server for the Primer Design System
- Updated version from 0.0.0 to 0.0.1 to match published package
- Converted bin field from string format to object format with named binary
packages/mcp/package.json
Outdated
"type": "module", | ||
"bin": "./dist/stdio.js", | ||
"bin": { | ||
"mcp": "dist/stdio.js" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The bin path should include a leading './' for proper resolution. Change 'dist/stdio.js' to './dist/stdio.js' to match the previous format and ensure correct binary path resolution.
"mcp": "dist/stdio.js" | |
"mcp": "./dist/stdio.js" |
Copilot uses AI. Check for mistakes.
size-limit report 📦
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh awesome 🤘🏻
Update our experimental
mcp
package to include a description and a correctly formatted"bin"
field. It also synchronizes the version with what we have manually published to npm