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
+1 -1
View File
@@ -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"
},