From 1bb48b2530686ec0f54c02149e304c01e51ed2b5 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 26 Feb 2026 17:06:40 +0000 Subject: [PATCH] fix(package): remove CLI bin wrapper and exclude bin/ from published files --- changelog.md | 6 ++++++ package.json | 4 ---- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index 69e0c5a..0b60e30 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-02-26 - 5.2.5 - fix(package) +remove CLI bin wrapper and exclude bin/ from published files + +- Removed "bin" entry from package.json (mailer wrapper) +- Removed "bin/" from files array to prevent including CLI wrapper in published package + ## 2026-02-26 - 5.2.4 - fix(repo) no changes detected — no version bump required diff --git a/package.json b/package.json index 34cd259..6a7e547 100644 --- a/package.json +++ b/package.json @@ -30,9 +30,6 @@ "exports": { ".": "./dist_ts/index.js" }, - "bin": { - "mailer": "./bin/mailer-wrapper.js" - }, "scripts": { "test": "tstest test/ --logfile --verbose --timeout 60", "build": "tsbuild tsfolders && tsrust", @@ -61,7 +58,6 @@ "files": [ "ts/**/*", "dist_ts/**/*", - "bin/", "scripts/install-binary.js", "dist_rust/**/*", "readme.md", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e25c8ac..e465fde 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartmta', - version: '5.2.4', + version: '5.2.5', description: 'A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.' }