diff --git a/changelog.md b/changelog.md index 0af4350..3b92830 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-05-09 - 2.10.4 - fix(package) +correct bin path for the tsbundle CLI entry + +- Updates the package bin mapping from "cli.js" to "./cli.js" for a properly explicit executable path in package metadata. + ## 2026-05-09 - 2.10.3 - fix(release-config) update Verdaccio registry URL in smart config diff --git a/package.json b/package.json index 5aaf8e1..f1d3ff0 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "buildDocs": "tsdoc" }, "bin": { - "tsbundle": "cli.js" + "tsbundle": "./cli.js" }, "devDependencies": { "@git.zone/tsbuild": "^4.4.0", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 52a93e3..a1aeadd 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsbundle', - version: '2.10.3', + version: '2.10.4', description: 'a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects' }