From f6b800414dd2eba798eeb868b62be71ebb44e979 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Tue, 14 May 2024 01:30:50 +0100 Subject: [PATCH] chore: update run.js to include dev mode on compileModule (#11601) --- playgrounds/sandbox/run.js | 1 + 1 file changed, 1 insertion(+) diff --git a/playgrounds/sandbox/run.js b/playgrounds/sandbox/run.js index 06f4242ae8..86ec3fc882 100644 --- a/playgrounds/sandbox/run.js +++ b/playgrounds/sandbox/run.js @@ -78,6 +78,7 @@ for (const generate of ['client', 'server']) { const source = fs.readFileSync(input, 'utf-8'); const compiled = compileModule(source, { + dev: true, filename: input, generate });