Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz 13ed73ad7d v2.0.5
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-09 12:41:20 +00:00
jkunz cd8058e85a fix(package): normalize bin entry path for the tsdoc CLI 2026-05-09 12:41:20 +00:00
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # 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) ## 2026-05-09 - 2.0.4 - fix(aidocs)
correct smartconfig file handling and tighten TypeScript typings correct smartconfig file handling and tighten TypeScript typings
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsdoc", "name": "@git.zone/tsdoc",
"version": "2.0.4", "version": "2.0.5",
"private": false, "private": false,
"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.", "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.",
"type": "module", "type": "module",
@@ -10,7 +10,7 @@
"author": "Task Venture Capital GmbH", "author": "Task Venture Capital GmbH",
"license": "MIT", "license": "MIT",
"bin": { "bin": {
"tsdoc": "cli.js" "tsdoc": "./cli.js"
}, },
"scripts": { "scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 600) && pnpm run testCli", "test": "(tstest test/ --verbose --logfile --timeout 600) && pnpm run testCli",
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsdoc', 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.' 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.'
} }