Compare commits

...

2 Commits

Author SHA1 Message Date
jkunz 2172f69c47 v11.0.11
Docker (tags) / security (push) Failing after 1s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2026-03-05 11:49:24 +00:00
jkunz 925b2f4518 fix(build): add debug logging to build script to list dist_ts and dist_ts_interfaces before and after bundling 2026-03-05 11:49:24 +00:00
4 changed files with 11 additions and 4 deletions
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## 2026-03-05 - 11.0.11 - fix(build)
add debug logging to build script to list dist_ts and dist_ts_interfaces before and after bundling
- Updated package.json build script to echo markers and run find on dist_ts and dist_ts_interfaces before and after npm run bundle to surface generated directories.
- Purpose: aid debugging and verification of TypeScript build and bundling outputs by printing directory listings to the console.
- Non-breaking change: only increases build-time console output; does not alter build artifacts or behavior.
## 2026-03-05 - 11.0.10 - fix(playwright-mcp)
remove committed Playwright artifacts and add .playwright-mcp/ to .gitignore
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@serve.zone/dcrouter",
"private": false,
"version": "11.0.10",
"version": "11.0.11",
"description": "A multifaceted routing service handling mail and SMS delivery functions.",
"type": "module",
"exports": {
@@ -14,7 +14,7 @@
"test": "(tstest test/ --logfile --timeout 60)",
"start": "(node --max_old_space_size=250 ./cli.js)",
"startTs": "(node cli.ts.js)",
"build": "(tsbuild tsfolders --allowimplicitany && npm run bundle)",
"build": "(tsbuild tsfolders --allowimplicitany && echo '=== DIST_TS AFTER TSBUILD ===' && find dist_ts -maxdepth 1 -type d | sort && echo '=== DIST_TS_INTERFACES ===' && find dist_ts_interfaces -maxdepth 1 -type d | sort && npm run bundle && echo '=== DIST_TS AFTER BUNDLE ===' && find dist_ts -maxdepth 1 -type d | sort)",
"bundle": "(tsbundle)",
"watch": "tswatch"
},
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
version: '11.0.10',
version: '11.0.11',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
version: '11.0.10',
version: '11.0.11',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}