Commit 8ae0096
committed
fix: CI build missing plugin compilation
🔴 CRITICAL FIX: CI was not building plugin files
✅ Root Cause Found
- CI ran 'npm run build' (only main TypeScript compilation)
- Missing 'npm run build:plugin' (plugin + MCP server compilation)
- import-resolver.js not created because utils/ not compiled to dist/plugin/
✅ Fix Applied
- Changed CI build command from 'npm run build' to 'npm run build:all'
- build:all = 'npm run build && npm run build:plugin'
- Now compiles both main code AND plugin/MCP server code
- dist/plugin/utils/import-resolver.js will now exist
✅ Build Process Fixed
- Main build: tsc (compiles to dist/)
- Plugin build: tsc --project tsconfig.plugin.json (compiles to dist/plugin/)
- Both now run in CI, ensuring all files exist for validation
BREAKING: CI now builds complete plugin ecosystem, not just main code1 parent 5209f9d commit 8ae0096
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
0 commit comments