diff --git a/CHANGELOG.md b/CHANGELOG.md index 56289283d..cb25c04fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix issue where "Replace Script" confirmation alert would appear when pasting sometimes even if the custom script hadn't been modified - Fix issue preventing building projects containing a "Play Music" event but no music - Fix issue where dialogue script events could cause horizontal scroll bars to appear in script editor when column was not wide enough to display all tabs +- Fix issue where errors causing the build process to end early where not being display correctly in the Build Log ## [4.1.2] - 2024-09-09 diff --git a/src/lib/compiler/buildWorker.ts b/src/lib/compiler/buildWorker.ts index fc912fd18..d60cc7f5c 100644 --- a/src/lib/compiler/buildWorker.ts +++ b/src/lib/compiler/buildWorker.ts @@ -144,6 +144,7 @@ const run = async () => { if (terminating) { return; } + warnings(String(e)); console.error("buildTask process terminated with error:", e); process.exit(1); }