@@ -182,16 +182,16 @@ Error: _other.scss was already loaded, so it can't be configured using "with".
182
182
<===> multi_configuration/double_load/through_forward/input.scss
183
183
@use "sass:meta";
184
184
@include meta.load-css("forwarded");
185
- @include meta.load-css("midstream", $with: (a: b));
185
+ @include meta.load-css("midstream", $with: (a: b, c: d ));
186
186
187
187
<===> multi_configuration/double_load/through_forward/_midstream.scss
188
188
@forward "forwarded";
189
189
190
- $a: c !default;
190
+ $a: e !default;
191
191
192
192
<===> multi_configuration/double_load/through_forward/_forwarded.scss
193
- // This file defines no variables, but it still may not be loaded both with and
194
- // without configuration.
193
+ // This only throws an error because it defines a configurable variable.
194
+ $c: f !default;
195
195
196
196
<===> multi_configuration/double_load/through_forward/error
197
197
Error: This module was already loaded, so it can't be configured using "with".
@@ -202,8 +202,8 @@ Error: This module was already loaded, so it can't be configured using "with".
202
202
,--> input.scss
203
203
2 | @include meta.load-css("forwarded");
204
204
| =================================== original load
205
- 3 | @include meta.load-css("midstream", $with: (a: b));
206
- | ================================================== configuration
205
+ 3 | @include meta.load-css("midstream", $with: (a: b, c: d ));
206
+ | ======================================================== configuration
207
207
'
208
208
_midstream.scss 1:1 load-css()
209
209
input.scss 3:1 root stylesheet
@@ -280,16 +280,16 @@ Error: _other.scss was already loaded, so it can't be configured using "with".
280
280
<===> multi_configuration/use_and_load/through_forward/input.scss
281
281
@use "sass:meta";
282
282
@use "forwarded";
283
- @include meta.load-css("midstream", $with: (a: b));
283
+ @include meta.load-css("midstream", $with: (a: b, c: d ));
284
284
285
285
<===> multi_configuration/use_and_load/through_forward/_midstream.scss
286
286
@forward "forwarded";
287
287
288
- $a: c !default;
288
+ $a: e !default;
289
289
290
290
<===> multi_configuration/use_and_load/through_forward/_forwarded.scss
291
- // This file defines no variables, but it still may not be loaded both with and
292
- // without configuration.
291
+ // This only throws an error because it defines a configurable variable.
292
+ $c: f !default;
293
293
294
294
<===> multi_configuration/use_and_load/through_forward/error
295
295
Error: This module was already loaded, so it can't be configured using "with".
@@ -300,8 +300,8 @@ Error: This module was already loaded, so it can't be configured using "with".
300
300
,--> input.scss
301
301
2 | @use "forwarded";
302
302
| ================ original load
303
- 3 | @include meta.load-css("midstream", $with: (a: b));
304
- | ================================================== configuration
303
+ 3 | @include meta.load-css("midstream", $with: (a: b, c: d ));
304
+ | ======================================================== configuration
305
305
'
306
306
_midstream.scss 1:1 load-css()
307
307
input.scss 3:1 root stylesheet
0 commit comments