@overpod/mcp-telegram 1.37.0 → 1.37.1

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/CHANGELOG.md +7 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.37.1](https://github.com/mcp-telegram/mcp-telegram/compare/v1.37.0...v1.37.1) (2026-06-06)
9
+
10
+
11
+ ### Fixed
12
+
13
+ * **build:** clean dist/ before tsc so stale artifacts don't ship to npm ([f56676d](https://github.com/mcp-telegram/mcp-telegram/commit/f56676d9b610865145fe595ac806538f7e959741))
14
+
8
15
  ## [1.37.0] — 2026-06-04
9
16
 
10
17
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overpod/mcp-telegram",
3
- "version": "1.37.0",
3
+ "version": "1.37.1",
4
4
  "description": "MCP server for Telegram userbot — messages, media, reactions, polls & more. Built on GramJS/MTProto.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,6 +23,8 @@
23
23
  "dev": "tsx watch src/index.ts",
24
24
  "start": "node dist/index.js",
25
25
  "login": "node dist/qr-login-cli.js",
26
+ "clean": "node --eval \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
27
+ "prebuild": "npm run clean",
26
28
  "build": "tsc && chmod +x dist/cli.js dist/manifest.js dist/qr-login-cli.js",
27
29
  "typecheck": "tsc --noEmit",
28
30
  "prepublishOnly": "npm run build",
@@ -67,7 +69,7 @@
67
69
  },
68
70
  "devDependencies": {
69
71
  "@biomejs/biome": "^2.4.16",
70
- "@types/node": "^25.9.1",
72
+ "@types/node": "^25.9.2",
71
73
  "@types/qrcode": "^1.5.6",
72
74
  "c8": "^11.0.0",
73
75
  "tsx": "^4.22.4",