Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz c6d485277d v2.10.4
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:07 +00:00
jkunz ad31e54086 fix(package): correct bin path for the tsbundle CLI entry 2026-05-09 12:41:07 +00:00
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-05-09 - 2.10.4 - fix(package)
correct bin path for the tsbundle CLI entry
- Updates the package bin mapping from "cli.js" to "./cli.js" for a properly explicit executable path in package metadata.
## 2026-05-09 - 2.10.3 - fix(release-config) ## 2026-05-09 - 2.10.3 - fix(release-config)
update Verdaccio registry URL in smart config update Verdaccio registry URL in smart config
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsbundle", "name": "@git.zone/tsbundle",
"version": "2.10.3", "version": "2.10.4",
"private": false, "private": false,
"description": "a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects", "description": "a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -14,7 +14,7 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"bin": { "bin": {
"tsbundle": "cli.js" "tsbundle": "./cli.js"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^4.4.0", "@git.zone/tsbuild": "^4.4.0",
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsbundle', name: '@git.zone/tsbundle',
version: '2.10.3', version: '2.10.4',
description: 'a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects' description: 'a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects'
} }