Skip to content

Commit a484da4

Browse files
committed
-remove: vitest
Signed-off-by: sunrabbit123 <[email protected]>
1 parent c1d642c commit a484da4

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"access": "public"
3333
},
3434
"scripts": {
35-
"test": "vitest",
3635
"build": "tsup",
3736
"lint": "eslint .",
3837
"format": "eslint --fix .",
@@ -53,7 +52,6 @@
5352
"jiti": "^2.4.2",
5453
"publint": "^0.3.12",
5554
"tsup": "^8.4.0",
56-
"typescript": "^5.8.3",
57-
"vitest": "^3.1.1"
55+
"typescript": "^5.8.3"
5856
}
5957
}

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ export type StdioMcpConnection = StdioServerParameters;
1616
export type InMemoryMcpConnection = Server;
1717
export type McpConnection = SSEMcpConnection | StdioMcpConnection | InMemoryMcpConnection;
1818

19-
interface Props<T extends keyof unknown> {
19+
interface Props<T extends string> {
2020
name: string;
2121
version: string;
2222
mcpServers: Record<T, McpConnection>;
2323
env: Record<string, T>;
2424
}
2525

26-
export async function bundler<T extends keyof unknown>(props: Props<T>): Promise<{
26+
export async function bundler<T extends string>(props: Props<T>): Promise<{
2727
run: () => void;
2828
server: Server;
2929
}> {

vitest.config.mts

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)