fix(bin): normalize bin entry to use a relative cli path

This commit is contained in:
2026-05-09 12:40:48 +00:00
parent 8224085b28
commit 3ef20b78f1
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # 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) ## 2026-05-09 - 3.3.4 - fix(config)
use .smartconfig.json consistently and pass asset copy paths explicitly use .smartconfig.json consistently and pass asset copy paths explicitly
+1 -1
View File
@@ -10,7 +10,7 @@
"author": "Task Venture Capital GmbH", "author": "Task Venture Capital GmbH",
"license": "MIT", "license": "MIT",
"bin": { "bin": {
"tswatch": "cli.js" "tswatch": "./cli.js"
}, },
"scripts": { "scripts": {
"test": "tstest test/", "test": "tstest test/",
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tswatch', 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.' description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
} }