From 8b9df9871ae678713a25ed44dca57d09c3f60789 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 30 Aug 2023 15:12:13 -0400 Subject: [PATCH] resolve instead of reject --- scripts/build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.js b/scripts/build.js index 024915572..8bc344a40 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -71,8 +71,8 @@ async function buildTheDocs(watch = false) { child.stderr.on('data', data => { if (data.includes(errorSignal)) { - // This closes the dev server, not sure if thats what we want? - reject(output); + // Resolve to prevent the dev server from closing + resolve(output); } }); } else {