From e954e6529f89a23bfc9b69723a68f4f27a6e12cb Mon Sep 17 00:00:00 2001 From: Shinrai Date: Sat, 8 Aug 2026 21:23:05 -0700 Subject: [PATCH] docs(devcheck): soften message - don't assert it's "loading from dist/" Syncs the wording fix from CLDMV/holdmytask#12: the message asserted "UUID is loading from dist/", which isn't necessarily true when devcheck runs standalone or in an unbuilt checkout (dist/ may not exist). Reworded to describe default resolution ("imports resolve to dist/ by default, or fail if it isn't built") rather than asserting the current runtime is on dist/. --- devcheck.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devcheck.mjs b/devcheck.mjs index 7f79d1c..3bd1e42 100644 --- a/devcheck.mjs +++ b/devcheck.mjs @@ -83,7 +83,7 @@ if (existsSync(srcPath) && !isCI && !isInstalledPackage) { if (!hasUUIDDev) { console.error("❌ Development environment not properly configured!"); console.error("📁 Source folder detected but the 'uuid-dev' condition is not set,"); - console.error(" so UUID is loading from dist/ instead of src/."); + console.error(" so imports resolve to dist/ by default (or fail if it isn't built) instead of src/."); console.error(""); console.error("🔧 To load from src/ for development, set the condition:"); console.error(" Windows (cmd):");