fix(bin): normalize bin entry to use a relative cli path
This commit is contained in:
@@ -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
@@ -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/",
|
||||||
|
|||||||
@@ -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.'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user