@beastmode-develeap/beastmode 0.1.370 → 0.1.371

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7886,7 +7886,7 @@ async function startServer(options = {}) {
7886
7886
  if (method === "GET") {
7887
7887
  if (url === "/board" || url === "/board.html") {
7888
7888
  let html = loadBoardHtml();
7889
- if (html === null) {
7889
+ if (html === null || html.trim().length === 0) {
7890
7890
  const body = "<html><body><h1>BeastMode Board</h1><p>Artifact missing \u2014 deploy pipeline produced an unreadable board.html. This is an infrastructure failure, not a feature bug.</p></body></html>";
7891
7891
  res.writeHead(503, {
7892
7892
  "Content-Type": "text/html; charset=utf-8",