From cd8058e85a53fd1fbf6e4390f973e32750f87d04 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sat, 9 May 2026 12:41:20 +0000 Subject: [PATCH] fix(package): normalize bin entry path for the tsdoc CLI --- 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 7c1ac82..2d65d65 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-05-09 - 2.0.5 - fix(package) +normalize bin entry path for the tsdoc CLI + +- Update the package.json bin mapping from "cli.js" to "./cli.js" for explicit executable resolution. + ## 2026-05-09 - 2.0.4 - fix(aidocs) correct smartconfig file handling and tighten TypeScript typings diff --git a/package.json b/package.json index c421863..eccadc4 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "author": "Task Venture Capital GmbH", "license": "MIT", "bin": { - "tsdoc": "cli.js" + "tsdoc": "./cli.js" }, "scripts": { "test": "(tstest test/ --verbose --logfile --timeout 600) && pnpm run testCli", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 54a4862..de944f9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsdoc', - version: '2.0.4', + version: '2.0.5', description: 'A comprehensive TypeScript documentation tool that leverages AI to generate and enhance project documentation, including dynamic README creation, API docs via TypeDoc, and smart commit message generation.' }