diff --git a/changelog.md b/changelog.md index dabed66..65729f5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-05-09 - 2.2.8 - fix(package) +normalize bin entry path for the tsdocker CLI + +- Updates the package.json bin field from "cli.js" to "./cli.js" for the tsdocker executable. + ## 2026-05-09 - 2.2.7 - fix(docs) update installation and configuration documentation and include the license file in published artifacts diff --git a/package.json b/package.json index 007e812..dc3de9d 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", "bin": { - "tsdocker": "cli.js" + "tsdocker": "./cli.js" }, "scripts": { "test": "(pnpm run build)", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 30e4eb5..2d11dee 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsdocker', - version: '2.2.7', + version: '2.2.8', description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.' }