File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ matrix:
30
30
- curl -o dart.zip "https://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip"
31
31
- unzip dart.zip
32
32
- export PATH="$PATH:`pwd`/dart-sdk/bin"
33
- - git clone https://github.com/sass/dart-sass.git ../dart-sass --depth 1 --branch feature.use
33
+ - git clone https://github.com/sass/dart-sass.git ../dart-sass --depth 1
34
34
- (cd ../dart-sass; pub get)
35
35
script : bundle exec sass-spec.rb --dart ../dart-sass
36
36
Original file line number Diff line number Diff line change 310
310
b: c;
311
311
}
312
312
313
+ <===>
314
+ ================================================================================
315
+ <===> global/multiple/input.scss
316
+ @use "left" as *;
317
+ @use "right" as *;
318
+
319
+ a {
320
+ left: $left;
321
+ right: $right;
322
+ }
323
+
324
+ <===> global/multiple/left.scss
325
+ $left: left;
326
+
327
+ <===> global/multiple/right.scss
328
+ $right: right;
329
+
330
+ <===> global/multiple/output.css
331
+ a {
332
+ left: left;
333
+ right: right;
334
+ }
335
+
313
336
<===>
314
337
================================================================================
315
338
<===> use_to_import/variable_use/input.scss
You can’t perform that action at this time.
0 commit comments