@@ -28,8 +28,10 @@ async fn lightningcss() {
2828 options: Some ( json!( {
2929 "include" : 1 // lower nesting syntax
3030 } ) . to_string( ) ) ,
31+ js_options_handle: None ,
3132 cache: false ,
32- options_cache_key: String :: new( ) ,
33+ options_cache_key: Default :: default ( ) ,
34+ parallel: false ,
3335 } ] ) ,
3436 ..Default :: default ( )
3537 } ,
@@ -81,8 +83,10 @@ async fn swc() {
8183 }
8284 }
8385 } ) . to_string( ) ) ,
86+ js_options_handle: None ,
8487 cache: false ,
85- options_cache_key: String :: new( ) ,
88+ options_cache_key: Default :: default ( ) ,
89+ parallel: false ,
8690 } ] ) ,
8791 ..Default :: default ( )
8892 } ,
@@ -119,8 +123,10 @@ async fn react_refresh() {
119123 ModuleRuleUseLoader {
120124 loader: "builtin:react-refresh-loader" . to_string( ) ,
121125 options: None ,
126+ js_options_handle: None ,
122127 cache: false ,
123- options_cache_key: String :: new( ) ,
128+ options_cache_key: Default :: default ( ) ,
129+ parallel: false ,
124130 } ,
125131 ModuleRuleUseLoader {
126132 loader: "builtin:swc-loader" . to_string( ) ,
@@ -141,8 +147,10 @@ async fn react_refresh() {
141147 }
142148 }
143149 } ) . to_string( ) ) ,
150+ js_options_handle: None ,
144151 cache: false ,
145- options_cache_key: String :: new( ) ,
152+ options_cache_key: Default :: default ( ) ,
153+ parallel: false ,
146154 } ] ) ,
147155 ..Default :: default ( )
148156 } ,
@@ -180,8 +188,10 @@ async fn preact_refresh() {
180188 ModuleRuleUseLoader {
181189 loader: "builtin:preact-refresh-loader" . to_string( ) ,
182190 options: None ,
191+ js_options_handle: None ,
183192 cache: false ,
184- options_cache_key: String :: new( ) ,
193+ options_cache_key: Default :: default ( ) ,
194+ parallel: false ,
185195 } ,
186196 ModuleRuleUseLoader {
187197 loader: "builtin:swc-loader" . to_string( ) ,
@@ -202,8 +212,10 @@ async fn preact_refresh() {
202212 }
203213 }
204214 } ) . to_string( ) ) ,
215+ js_options_handle: None ,
205216 cache: false ,
206- options_cache_key: String :: new( ) ,
217+ options_cache_key: Default :: default ( ) ,
218+ parallel: false ,
207219 } ] ) ,
208220 ..Default :: default ( )
209221 } ,
0 commit comments