Skip to content

Commit d687f4f

Browse files
authored
v1.0.2 Support multiple SDK instances and remote MCP (#1)
1 parent 68234ec commit d687f4f

18 files changed

+3033
-344
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@ jobs:
2424

2525
- name: Install dependencies
2626
run: npm ci
27-
28-
- name: Run linter
29-
run: npm run lint
30-
27+
3128
- name: Run tests
3229
run: npm test
3330

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
dist
2+
dist
3+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @elementor/angie-sdk
22

3-
Based on [MCP](https://github.com/modelcontextprotocol/typescript-sdk) version: 1.13.0
3+
Based on [MCP](https://github.com/modelcontextprotocol/typescript-sdk) version: 1.17.4
44

55
**An SDK for extending Angie AI Assistant capabilities.**
66

jest.config.cjs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/** @type {import('jest').Config} */
2+
const config = {
3+
preset: 'ts-jest',
4+
testEnvironment: 'jsdom',
5+
setupFilesAfterEnv: ['<rootDir>/src/setupTests.ts'],
6+
testMatch: ['**/*.test.ts'],
7+
collectCoverageFrom: [
8+
'src/**/*.ts',
9+
'!src/**/*.d.ts',
10+
'!src/**/*.test.ts',
11+
],
12+
coverageThreshold: {
13+
global: {
14+
branches: 90,
15+
functions: 90,
16+
lines: 90,
17+
statements: 90,
18+
},
19+
},
20+
moduleNameMapper: {
21+
'^@/(.*)$': '<rootDir>/src/$1',
22+
},
23+
};
24+
25+
module.exports = config;

0 commit comments

Comments
 (0)