fix(build): add debug logging to build script to list dist_ts and dist_ts_interfaces before and after bundling

This commit is contained in:
2026-03-05 11:49:24 +00:00
parent 8d57547ace
commit 925b2f4518
4 changed files with 10 additions and 3 deletions
+7
View File
@@ -1,5 +1,12 @@
# Changelog # 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) ## 2026-03-05 - 11.0.10 - fix(playwright-mcp)
remove committed Playwright artifacts and add .playwright-mcp/ to .gitignore remove committed Playwright artifacts and add .playwright-mcp/ to .gitignore
+1 -1
View File
@@ -14,7 +14,7 @@
"test": "(tstest test/ --logfile --timeout 60)", "test": "(tstest test/ --logfile --timeout 60)",
"start": "(node --max_old_space_size=250 ./cli.js)", "start": "(node --max_old_space_size=250 ./cli.js)",
"startTs": "(node cli.ts.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)", "bundle": "(tsbundle)",
"watch": "tswatch" "watch": "tswatch"
}, },
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/dcrouter', name: '@serve.zone/dcrouter',
version: '11.0.10', version: '11.0.11',
description: 'A multifaceted routing service handling mail and SMS delivery functions.' description: 'A multifaceted routing service handling mail and SMS delivery functions.'
} }
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/dcrouter', name: '@serve.zone/dcrouter',
version: '11.0.10', version: '11.0.11',
description: 'A multifaceted routing service handling mail and SMS delivery functions.' description: 'A multifaceted routing service handling mail and SMS delivery functions.'
} }