Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6d485277d | |||
| ad31e54086 | |||
| 753aa29b26 | |||
| 65ca62f536 |
+2
-2
@@ -12,7 +12,7 @@
|
|||||||
},
|
},
|
||||||
"release": {
|
"release": {
|
||||||
"registries": [
|
"registries": [
|
||||||
"https://verdaccio.lossless.one",
|
"https://verdaccio.lossless.digital",
|
||||||
"https://registry.npmjs.org"
|
"https://registry.npmjs.org"
|
||||||
],
|
],
|
||||||
"accessLevel": "public"
|
"accessLevel": "public"
|
||||||
@@ -21,4 +21,4 @@
|
|||||||
"@ship.zone/szci": {
|
"@ship.zone/szci": {
|
||||||
"npmGlobalTools": []
|
"npmGlobalTools": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
# 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)
|
||||||
|
update Verdaccio registry URL in smart config
|
||||||
|
|
||||||
|
- Changes the release registry from https://verdaccio.lossless.one to https://verdaccio.lossless.digital in .smartconfig.json
|
||||||
|
|
||||||
## 2026-05-09 - 2.10.2 - fix(config)
|
## 2026-05-09 - 2.10.2 - fix(config)
|
||||||
update .smartconfig.json handling and harden bundler runtime compatibility
|
update .smartconfig.json handling and harden bundler runtime compatibility
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbundle",
|
"name": "@git.zone/tsbundle",
|
||||||
"version": "2.10.2",
|
"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",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbundle',
|
name: '@git.zone/tsbundle',
|
||||||
version: '2.10.2',
|
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'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user