Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz c872ff8d73 v10.0.2 2026-05-09 12:38:55 +00:00
jkunz 46c10902a8 fix(package): remove private flag to allow package publishing 2026-05-09 12:38:55 +00:00
3 changed files with 7 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 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
+1 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tscoverage", "name": "@git.zone/tscoverage",
"version": "10.0.1", "version": "10.0.2",
"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",
@@ -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/**/*",
+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.1', version: '10.0.2',
description: 'get coverage information for gitzone projects' description: 'get coverage information for gitzone projects'
} }