$
This commit is contained in:
6
node_modules/node-sass/test/fixtures/depth-first/_common.scss
generated
vendored
Normal file
6
node_modules/node-sass/test/fixtures/depth-first/_common.scss
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
@import "vars";
|
||||
@import "struct";
|
||||
|
||||
.myvars {
|
||||
content: quote($import_counter);
|
||||
}
|
3
node_modules/node-sass/test/fixtures/depth-first/_struct.scss
generated
vendored
Normal file
3
node_modules/node-sass/test/fixtures/depth-first/_struct.scss
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.common-struct {
|
||||
content: "common-struct";
|
||||
}
|
5
node_modules/node-sass/test/fixtures/depth-first/_vars.scss
generated
vendored
Normal file
5
node_modules/node-sass/test/fixtures/depth-first/_vars.scss
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
$import_counter: $import_counter + 1;
|
||||
|
||||
.common-vars {
|
||||
content: "common-vars";
|
||||
}
|
7
node_modules/node-sass/test/fixtures/depth-first/a.scss
generated
vendored
Normal file
7
node_modules/node-sass/test/fixtures/depth-first/a.scss
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
@import "_common";
|
||||
@import "a1";
|
||||
|
||||
.a2 {
|
||||
content: "a2";
|
||||
}
|
||||
|
3
node_modules/node-sass/test/fixtures/depth-first/a1.scss
generated
vendored
Normal file
3
node_modules/node-sass/test/fixtures/depth-first/a1.scss
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.a1 {
|
||||
content: "a1";
|
||||
}
|
5
node_modules/node-sass/test/fixtures/depth-first/b.scss
generated
vendored
Normal file
5
node_modules/node-sass/test/fixtures/depth-first/b.scss
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
@import "b1";
|
||||
|
||||
.b2 {
|
||||
content: "b2";
|
||||
}
|
3
node_modules/node-sass/test/fixtures/depth-first/b1.scss
generated
vendored
Normal file
3
node_modules/node-sass/test/fixtures/depth-first/b1.scss
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.b1 {
|
||||
content: "b1";
|
||||
}
|
32
node_modules/node-sass/test/fixtures/depth-first/expected.css
generated
vendored
Normal file
32
node_modules/node-sass/test/fixtures/depth-first/expected.css
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
.common-vars {
|
||||
content: "common-vars"; }
|
||||
|
||||
.common-struct {
|
||||
content: "common-struct"; }
|
||||
|
||||
.myvars {
|
||||
content: "1"; }
|
||||
|
||||
.a1 {
|
||||
content: "a1"; }
|
||||
|
||||
.a2 {
|
||||
content: "a2"; }
|
||||
|
||||
.common-vars {
|
||||
content: "common-vars"; }
|
||||
|
||||
.common-struct {
|
||||
content: "common-struct"; }
|
||||
|
||||
.myvars {
|
||||
content: "2"; }
|
||||
|
||||
.b1 {
|
||||
content: "b1"; }
|
||||
|
||||
.b2 {
|
||||
content: "b2"; }
|
||||
|
||||
#the-last {
|
||||
content: "LAST"; }
|
8
node_modules/node-sass/test/fixtures/depth-first/index.scss
generated
vendored
Normal file
8
node_modules/node-sass/test/fixtures/depth-first/index.scss
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
$import_counter: 0;
|
||||
@import "a";
|
||||
@import "common";
|
||||
@import "b";
|
||||
|
||||
#the-last {
|
||||
content: "LAST";
|
||||
}
|
Reference in New Issue
Block a user