Skip to content

Commit 6f5ce14

Browse files
author
aheizi
committed
upgrade @modelcontextprotocol/sdk to latest version
(cherry picked from commit f9cc13c)
1 parent 78b3130 commit 6f5ce14

File tree

3 files changed

+43
-564
lines changed

3 files changed

+43
-564
lines changed

esbuild.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ const extensionConfig = {
7272
copyWasmFiles,
7373
/* add to the end of plugins array */
7474
esbuildProblemMatcherPlugin,
75+
{
76+
name: "alias-plugin",
77+
setup(build) {
78+
build.onResolve({ filter: /^pkce-challenge$/ }, (args) => {
79+
return { path: require.resolve("pkce-challenge/dist/index.browser.js") }
80+
})
81+
},
82+
},
7583
],
7684
entryPoints: ["src/extension.ts"],
7785
format: "cjs",

0 commit comments

Comments
 (0)