From 0797bbfc187c5f36bfa141d2f167323e5f93cc1a Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sat, 9 May 2026 12:40:47 +0000 Subject: [PATCH] fix(package): normalize bin entry to use a relative cli path --- changelog.md | 5 +++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index be80467..71c3ba0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-05-09 - 10.0.3 - fix(package) +normalize bin entry to use a relative cli path + +- Updates the package.json bin mapping from "cli.js" to "./cli.js" for clearer executable path resolution. + ## 2026-05-09 - 10.0.2 - fix(package) remove private flag to allow package publishing diff --git a/package.json b/package.json index cb5200a..879bb22 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", "bin": { - "tscoverage": "cli.js" + "tscoverage": "./cli.js" }, "scripts": { "test": "tstest test/", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e05a0f9..776a089 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tscoverage', - version: '10.0.2', + version: '10.0.3', description: 'get coverage information for gitzone projects' }