We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab819f commit 20ace90Copy full SHA for 20ace90
package/src/util/deno.ts
@@ -54,6 +54,8 @@ export async function compile(
54
denoBundleCmd.push("compile");
55
denoBundleCmd.push("--unstable-kv");
56
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");
59
denoBundleCmd.push(
60
"--importmap=" + configuration.importmap,
61
);
0 commit comments