diff --git a/changelog.md b/changelog.md index 0aca987..8d1e52f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-05-09 - 3.3.5 - fix(bin) +normalize bin entry to use a relative cli path + +- Updates the package bin mapping from "cli.js" to "./cli.js" in package.json for clearer executable resolution. + ## 2026-05-09 - 3.3.4 - fix(config) use .smartconfig.json consistently and pass asset copy paths explicitly diff --git a/package.json b/package.json index 3f616c7..a94a5d8 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "author": "Task Venture Capital GmbH", "license": "MIT", "bin": { - "tswatch": "cli.js" + "tswatch": "./cli.js" }, "scripts": { "test": "tstest test/", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 1b29895..ff96380 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tswatch', - version: '3.3.4', + version: '3.3.5', description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.' }