Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz 843ac72f26 v2.2.8
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:40:53 +00:00
jkunz 8ea6f6be83 fix(package): normalize bin entry path for the tsdocker CLI 2026-05-09 12:40:53 +00:00
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-05-09 - 2.2.8 - fix(package)
normalize bin entry path for the tsdocker CLI
- Updates the package.json bin field from "cli.js" to "./cli.js" for the tsdocker executable.
## 2026-05-09 - 2.2.7 - fix(docs) ## 2026-05-09 - 2.2.7 - fix(docs)
update installation and configuration documentation and include the license file in published artifacts update installation and configuration documentation and include the license file in published artifacts
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "@git.zone/tsdocker", "name": "@git.zone/tsdocker",
"version": "2.2.7", "version": "2.2.8",
"private": false, "private": false,
"description": "A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.", "description": "A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"bin": { "bin": {
"tsdocker": "cli.js" "tsdocker": "./cli.js"
}, },
"scripts": { "scripts": {
"test": "(pnpm run build)", "test": "(pnpm run build)",
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsdocker', name: '@git.zone/tsdocker',
version: '2.2.7', version: '2.2.8',
description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.' description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.'
} }