File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
core_functions/meta/load_css Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 261
261
d: configured;
262
262
}
263
263
264
+ <===>
265
+ ================================================================================
266
+ <===> core_module/indirect/input.scss
267
+ // Regression test for sass/dart-sass#838.
268
+ @use "sass:meta";
269
+ @include meta.load-css("other", $with: (c: e));
270
+
271
+ <===> core_module/indirect/_other.scss
272
+ @use "sass:color";
273
+
274
+ $c: d !default;
275
+
276
+ a {b: $c}
277
+
278
+ <===> core_module/indirect/output.css
279
+ a {
280
+ b: e;
281
+ }
282
+
264
283
<===>
265
284
================================================================================
266
285
<===> multi_load/README.md
Original file line number Diff line number Diff line change 328
328
b: e;
329
329
}
330
330
331
+ <===>
332
+ ================================================================================
333
+ <===> core_module/indirect/input.scss
334
+ // Regression test for sass/dart-sass#838.
335
+ @use "other" with ($c: e);
336
+
337
+ a {b: other.$c}
338
+
339
+ <===> core_module/indirect/_other.scss
340
+ @use "sass:color";
341
+
342
+ $c: d !default;
343
+
344
+ <===> core_module/indirect/output.css
345
+ a {
346
+ b: e;
347
+ }
348
+
331
349
<===>
332
350
================================================================================
333
351
<===> multi_load/README.md
You can’t perform that action at this time.
0 commit comments