@@ -24,7 +24,6 @@ fn main() {
24
24
25
25
// some other file paths
26
26
let js_file = bin_dir. join ( Path :: new ( "quarto.js" ) ) ;
27
- let importmap_file = bin_dir. join ( "vendor" ) . join ( "import_map.json" ) ;
28
27
29
28
// get command line args (skip first which is the program)
30
29
let args: Vec < OsString > = env:: args_os ( ) . skip ( 1 ) . collect ( ) ;
@@ -82,14 +81,15 @@ fn main() {
82
81
83
82
// Define the base deno options
84
83
let mut deno_options: Vec < String > = vec ! [
85
- String :: from( "--unstable-kv" ) ,
86
84
String :: from( "--unstable-ffi" ) ,
85
+ String :: from( "--unstable-kv" ) ,
87
86
String :: from( "--no-config" ) ,
88
- String :: from( "--cached-only" ) ,
89
87
String :: from( "--no-lock" ) ,
88
+ String :: from( "--cached-only" ) ,
90
89
// Using --allow-all as there is otherwise an issue in Deno 1.46.3 with --allow-read and --allow-write with network drives
91
90
// https://github.com/quarto-dev/quarto-cli/issues/11332
92
91
String :: from( "--allow-all" ) ,
92
+ String :: from( "--no-check" ) ,
93
93
] ;
94
94
95
95
// # --enable-experimental-regexp-engine is required for /regex/l, https://github.com/quarto-dev/quarto-cli/issues/9737
@@ -107,8 +107,6 @@ fn main() {
107
107
let mut child = Command :: new ( & deno_file)
108
108
. arg ( "run" )
109
109
. args ( deno_options)
110
- . arg ( "--importmap" )
111
- . arg ( importmap_file)
112
110
. arg ( js_file)
113
111
. args ( args)
114
112
. spawn ( )
0 commit comments