Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 40d2ee3a48 | |||
| 0797bbfc18 | |||
| c872ff8d73 | |||
| 46c10902a8 |
@@ -1,5 +1,15 @@
|
|||||||
# 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)
|
||||||
|
remove private flag to allow package publishing
|
||||||
|
|
||||||
|
- Deletes the private field from package.json so the package can be published to the registry.
|
||||||
|
|
||||||
## 2026-05-09 - 10.0.1 - fix(docs)
|
## 2026-05-09 - 10.0.1 - fix(docs)
|
||||||
refresh package documentation and align metadata with current project layout
|
refresh package documentation and align metadata with current project layout
|
||||||
|
|
||||||
|
|||||||
+2
-3
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tscoverage",
|
"name": "@git.zone/tscoverage",
|
||||||
"version": "10.0.1",
|
"version": "10.0.3",
|
||||||
"description": "get coverage information for gitzone projects",
|
"description": "get coverage information for gitzone projects",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"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/",
|
||||||
@@ -34,7 +34,6 @@
|
|||||||
"@git.zone/tswatch": "^3.3.3",
|
"@git.zone/tswatch": "^3.3.3",
|
||||||
"@types/node": "^25.6.2"
|
"@types/node": "^25.6.2"
|
||||||
},
|
},
|
||||||
"private": true,
|
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
"ts_web/**/*",
|
"ts_web/**/*",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tscoverage',
|
name: '@git.zone/tscoverage',
|
||||||
version: '10.0.1',
|
version: '10.0.3',
|
||||||
description: 'get coverage information for gitzone projects'
|
description: 'get coverage information for gitzone projects'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user