diff --git a/changelog.md b/changelog.md index 0d4311c..a0372e5 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/package.json b/package.json index 2a5ce6b..d38e2e7 100644 --- a/package.json +++ b/package.json @@ -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" }, diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f21ead4..9cafe47 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index f21ead4..9cafe47 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -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.' }