Skip to content

Commit 20ace90

Browse files
enable experimental regexp engine
yet another instance of #9737
1 parent 0ab819f commit 20ace90

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

package/src/util/deno.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ export async function compile(
5454
denoBundleCmd.push("compile");
5555
denoBundleCmd.push("--unstable-kv");
5656
denoBundleCmd.push("--unstable-ffi");
57+
// --enable-experimental-regexp-engine is required for /regex/l, https://github.com/quarto-dev/quarto-cli/issues/9737
58+
denoBundleCmd.push("--v8-flags=--enable-experimental-regexp-engine,--stack-trace-limit=100");
5759
denoBundleCmd.push(
5860
"--importmap=" + configuration.importmap,
5961
);

0 commit comments

Comments
 (0)