Merge branch 'main' into 'master'
Main See merge request !3
Showing
with
5470 additions
and
844 deletions
+5470
-844
- dist/context/project.context.d.ts dist/context/project.context.d.ts +1 -0
- dist/context/project.context.js dist/context/project.context.js +4 -0
- dist/core/codegen.core.d.ts dist/core/codegen.core.d.ts +3 -1
- dist/core/codegen.core.js dist/core/codegen.core.js +5 -4
- dist/index.d.ts dist/index.d.ts +1 -0
- dist/index.js dist/index.js +20 -19
- dist/tools/generate-ui-code.tool.d.ts dist/tools/generate-ui-code.tool.d.ts +3 -1
- jest.config.js jest.config.js +19 -0
- package-lock.json package-lock.json +5195 -767
- package.json package.json +5 -0
- src/context/project.context.ts src/context/project.context.ts +9 -0
- src/core/codegen.core.ts src/core/codegen.core.ts +7 -5
- src/index.ts src/index.ts +51 -47
- tests/codegen.test.ts tests/codegen.test.ts +51 -0
- tests/intent.test.ts tests/intent.test.ts +37 -0
- tests/tools.test.ts tests/tools.test.ts +59 -0
- ui-platform-mcp-1.0.0.tgz ui-platform-mcp-1.0.0.tgz +0 -0
- No files found.
jest.config.js
0 → 100644
| ... | ... | @@ -12,6 +12,8 @@ |
| ], | ||
| "scripts": { | ||
| "build": "tsc", | ||
| "test": "jest", | ||
| "test:watch": "jest --watch", | ||
| "prepublishOnly": "npm run build", | ||
| "start": "node dist/index.js", | ||
| "dev": "tsx src/index.ts" | ||
| ... | ... | @@ -20,7 +22,10 @@ |
| "@modelcontextprotocol/sdk": "^1.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/jest": "^30.0.0", | ||
| "@types/node": "^22.0.0", | ||
| "jest": "^30.2.0", | ||
| "ts-jest": "^29.4.6", | ||
| "tsx": "^4.0.0", | ||
| "typescript": "^5.6.0" | ||
| }, | ||
| ... | ... |
tests/codegen.test.ts
0 → 100644
tests/intent.test.ts
0 → 100644
tests/tools.test.ts
0 → 100644
No preview for this file type
Please register or sign in to comment