Skip to content

Commit 7782289

Browse files
scka-declaude
andcommitted
config: disable source maps in published package
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e76098e commit 7782289

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

package-lock.json

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

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
22
"name": "ecb-mcp",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"mcpName": "io.github.scka-de/ecb-mcp",
55
"description": "MCP server for European Central Bank data — exchange rates, interest rates, yield curves, inflation, money supply, and more via the ECB SDMX API",
66
"type": "module",
77
"bin": {
88
"ecb-mcp": "./dist/index.js"
99
},
1010
"main": "./dist/index.js",
11-
"files": ["dist"],
11+
"files": [
12+
"dist"
13+
],
1214
"scripts": {
1315
"build": "tsup",
1416
"dev": "tsx src/index.ts",

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
target: "node18",
77
outDir: "dist",
88
clean: true,
9-
sourcemap: true,
9+
sourcemap: false,
1010
dts: true,
1111
banner: {
1212
js: "#!/usr/bin/env node",

0 commit comments

Comments
 (0)