Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz 40d2ee3a48 v10.0.3 2026-05-09 12:40:47 +00:00
jkunz 0797bbfc18 fix(package): normalize bin entry to use a relative cli path 2026-05-09 12:40:47 +00:00
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# 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)
remove private flag to allow package publishing
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@git.zone/tscoverage",
"version": "10.0.2",
"version": "10.0.3",
"description": "get coverage information for gitzone projects",
"type": "module",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"bin": {
"tscoverage": "cli.js"
"tscoverage": "./cli.js"
},
"scripts": {
"test": "tstest test/",
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tscoverage',
version: '10.0.2',
version: '10.0.3',
description: 'get coverage information for gitzone projects'
}