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

This commit is contained in:
2026-05-09 12:40:47 +00:00
parent c872ff8d73
commit 0797bbfc18
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-05-09 - 10.0.3 - fix(package)
normalize bin entry to use a relative cli path
- Updates the package.json bin mapping from "cli.js" to "./cli.js" for clearer executable path resolution.
## 2026-05-09 - 10.0.2 - fix(package) ## 2026-05-09 - 10.0.2 - fix(package)
remove private flag to allow package publishing remove private flag to allow package publishing
+1 -1
View File
@@ -6,7 +6,7 @@
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"bin": { "bin": {
"tscoverage": "cli.js" "tscoverage": "./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/tscoverage', name: '@git.zone/tscoverage',
version: '10.0.2', version: '10.0.3',
description: 'get coverage information for gitzone projects' description: 'get coverage information for gitzone projects'
} }