Skip to content

Commit 8ae0096

Browse files
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 code
1 parent 5209f9d commit 8ae0096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm ci
5555

5656
- name: Build application
57-
run: npm run build
57+
run: npm run build:all
5858

5959
- name: Run build validation
6060
run: npm run validate

0 commit comments

Comments
 (0)