@eznix/mcp-gateway 1.3.4 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +5 -2
  2. package/package.json +5 -2
package/dist/index.js CHANGED
@@ -24882,7 +24882,7 @@ class ConnectionManager {
24882
24882
  // package.json
24883
24883
  var package_default = {
24884
24884
  name: "@eznix/mcp-gateway",
24885
- version: "1.3.4",
24885
+ version: "1.3.6",
24886
24886
  description: "MCP Gateway - Aggregate multiple MCP servers into a single gateway",
24887
24887
  type: "module",
24888
24888
  bin: {
@@ -24894,7 +24894,10 @@ var package_default = {
24894
24894
  build: "bun build src/index.ts --outdir dist --target node",
24895
24895
  "build:docker": "bun build src/docker.ts --target bun --outfile=gateway",
24896
24896
  "docker:build": "docker build -t mcp-gateway .",
24897
- "docker:run": "docker run -p 3000:3000 -v ./examples/config.json:/home/gateway/.config/mcp-gateway/config.json:ro mcp-gateway"
24897
+ "docker:run": "docker run -p 3000:3000 -v ./examples/config.json:/home/gateway/.config/mcp-gateway/config.json:ro mcp-gateway",
24898
+ preversion: 'bun run build && git add dist && git commit -m "chore: update build"',
24899
+ prepublishOnly: "bun run build",
24900
+ postversion: "git push && git push --tag"
24898
24901
  },
24899
24902
  devDependencies: {
24900
24903
  "@types/bun": "latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eznix/mcp-gateway",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "MCP Gateway - Aggregate multiple MCP servers into a single gateway",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,10 @@
12
12
  "build": "bun build src/index.ts --outdir dist --target node",
13
13
  "build:docker": "bun build src/docker.ts --target bun --outfile=gateway",
14
14
  "docker:build": "docker build -t mcp-gateway .",
15
- "docker:run": "docker run -p 3000:3000 -v ./examples/config.json:/home/gateway/.config/mcp-gateway/config.json:ro mcp-gateway"
15
+ "docker:run": "docker run -p 3000:3000 -v ./examples/config.json:/home/gateway/.config/mcp-gateway/config.json:ro mcp-gateway",
16
+ "preversion": "bun run build && git add dist && git commit -m \"chore: update build\"",
17
+ "prepublishOnly": "bun run build",
18
+ "postversion": "git push && git push --tag"
16
19
  },
17
20
  "devDependencies": {
18
21
  "@types/bun": "latest",