Skip to content

Commit 43fb05d

Browse files
committed
chore: bump package version, simplify README demo link and remove sections, and disable tsdown noExternal configuration.
1 parent ea454af commit 43fb05d

File tree

4 files changed

+39
-16
lines changed

4 files changed

+39
-16
lines changed

.github/workflows/publish.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Publish Package
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
12+
jobs:
13+
publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: pnpm/action-setup@v2
19+
with:
20+
version: 9
21+
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: '20'
25+
registry-url: 'https://registry.npmjs.org'
26+
27+
- name: Install Dependencies
28+
run: pnpm install
29+
30+
- name: Build
31+
run: pnpm --filter unplugin-dev-inspector build
32+
33+
- name: Publish
34+
working-directory: packages/unplugin-dev-inspector
35+
run: npm publish
36+
env:
37+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

packages/unplugin-dev-inspector/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,12 @@ Works with any MCP-compatible AI client. Supports ACP agents: **Claude Code**, *
2727

2828
## 🎬 Demo Video
2929

30-
[![Demo Video](https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExbnVvb2Y4MmJqbGJyMGJkendvZjkzZHN5MG4zY21mMXhjemF6dWk4aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/67nUJwE7Fb2TMhBjhy/giphy.gif)](https://www.youtube.com/shorts/TCt2oOtPS_k)
31-
3230
👉 **Watch the demo:** [https://www.youtube.com/shorts/TCt2oOtPS_k](https://www.youtube.com/shorts/TCt2oOtPS_k)
3331

3432
## 📢 Social Media
3533

3634
🐦 **Twittter/X Post:** [https://x.com/yaoandyan/status/1995082020431753600](https://x.com/yaoandyan/status/1995082020431753600?s=20)
3735

38-
## 👥 Team
39-
40-
- [yaonyan](https://huggingface.co/zpharnoex) - Project Creator
41-
42-
## 🤝 Sponsors & Integrations
43-
44-
This project uses the following sponsor APIs and platforms:
45-
46-
- **Anthropic** - Claude API for MCP integration testing and AI-powered debugging capabilities
47-
- **Gradio** - `@gradio/client` for connecting to Gradio-powered APIs in the demo app
48-
49-
---
5036

5137
![Demo: MCP-powered visual debugging in action](https://media.giphy.com/media/sGCk7b783GiGm5vZGl/giphy.gif)
5238

packages/unplugin-dev-inspector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpc-tech/unplugin-dev-inspector-mcp",
3-
"version": "0.0.25",
3+
"version": "0.0.26-beta.1",
44
"description": "Universal dev inspector plugin for React/Vue - inspect component sources and API calls in any bundler",
55
"type": "module",
66
"license": "MIT",

packages/unplugin-dev-inspector/tsdown.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
hash: false,
99
shims: true, // Add shims for import.meta.url in CJS
1010
// Bundle ESM-only packages for CJS compatibility
11-
noExternal: ["@mcpc-tech/cmcp", "@mcpc-tech/core", "@mcpc-tech/acp-ai-provider"],
11+
// noExternal: ["@mcpc-tech/cmcp", "@mcpc-tech/core", "@mcpc-tech/acp-ai-provider"],
1212
external: [
1313
// Bundler integrations - provided by user's project
1414
"vite",

0 commit comments

Comments
 (0)