Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz 0a01d9d8e0 v1.12.12
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-09 12:41:08 +00:00
jkunz b2efd2a380 fix(package): normalize the CLI bin path in package metadata 2026-05-09 12:41:08 +00:00
4 changed files with 9 additions and 4 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog
## 2026-05-09 - 1.12.12 - fix(package)
normalize the CLI bin path in package metadata
- Updates the npm bin entry from "cli.js" to "./cli.js" for clearer executable resolution.
## 2026-05-09 - 1.12.11 - fix(deps)
update runtime and development dependencies
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@git.zone/tsview",
"version": "1.12.11",
"version": "1.12.12",
"private": false,
"description": "A CLI tool for viewing S3 and MongoDB data with a web UI",
"main": "dist_ts/index.js",
@@ -17,7 +17,7 @@
"buildDocs": "tsdoc"
},
"bin": {
"tsview": "cli.js"
"tsview": "./cli.js"
},
"devDependencies": {
"@api.global/typedsocket": "^4.1.3",
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsview',
version: '1.12.11',
version: '1.12.12',
description: 'A CLI tool for viewing S3 and MongoDB data with a web UI'
}
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsview',
version: '1.12.11',
version: '1.12.12',
description: 'A CLI tool for viewing S3 and MongoDB data with a web UI'
}