diff --git a/changelog.md b/changelog.md index 3d3b7a4..be80467 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # 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) refresh package documentation and align metadata with current project layout diff --git a/package.json b/package.json index a61cab2..2a99b21 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "@git.zone/tswatch": "^3.3.3", "@types/node": "^25.6.2" }, - "private": true, "files": [ "ts/**/*", "ts_web/**/*", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 17ede74..e05a0f9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tscoverage', - version: '10.0.1', + version: '10.0.2', description: 'get coverage information for gitzone projects' }