Skip to content

Commit 89ba1bc

Browse files
Merge pull request #361 from xianzuyang9-blip/codex/fix-utils-exports
Fix mcp-server-utils package exports
2 parents 0f87842 + ff1d7b6 commit 89ba1bc

2 files changed

Lines changed: 10 additions & 19 deletions

File tree

packages/mcp-server-utils/package.json

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"author": "Steve Calvert <steve.calvert@glean.com>",
1717
"type": "module",
1818
"exports": {
19-
"./auth": {
20-
"types": "./build/auth/index.d.ts",
21-
"import": "./build/auth/index.js",
22-
"default": "./build/auth/index.js"
19+
".": {
20+
"types": "./build/index.d.ts",
21+
"import": "./build/index.js",
22+
"default": "./build/index.js"
2323
},
2424
"./config": {
2525
"types": "./build/config/index.d.ts",
@@ -31,21 +31,6 @@
3131
"import": "./build/common/errors.js",
3232
"default": "./build/common/errors.js"
3333
},
34-
"./tools/chat": {
35-
"types": "./build/tools/chat.d.ts",
36-
"import": "./build/tools/chat.js",
37-
"default": "./build/tools/chat.js"
38-
},
39-
"./tools/people-profile-search": {
40-
"types": "./build/tools/people_profile_search.d.ts",
41-
"import": "./build/tools/people_profile_search.js",
42-
"default": "./build/tools/people_profile_search.js"
43-
},
44-
"./tools/search": {
45-
"types": "./build/tools/search.d.ts",
46-
"import": "./build/tools/search.js",
47-
"default": "./build/tools/search.js"
48-
},
4934
"./util": {
5035
"types": "./build/util/index.d.ts",
5136
"import": "./build/util/index.js",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export * from './common/errors.js';
2+
export * from './common/version.js';
3+
export * from './config/index.js';
4+
export * from './log/logger.js';
5+
export * from './util/index.js';
6+
export * from './xdg/xdg.js';

0 commit comments

Comments
 (0)