Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2172f69c47 | |||
| 925b2f4518 |
@@ -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
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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.'
|
||||
}
|
||||
|
||||
@@ -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.'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user