summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/test/fixtures/depth-first
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-sass/test/fixtures/depth-first')
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/_common.scss6
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/_struct.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/_vars.scss5
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/a.scss7
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/a1.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/b.scss5
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/b1.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/expected.css32
-rw-r--r--node_modules/node-sass/test/fixtures/depth-first/index.scss8
9 files changed, 72 insertions, 0 deletions
diff --git a/node_modules/node-sass/test/fixtures/depth-first/_common.scss b/node_modules/node-sass/test/fixtures/depth-first/_common.scss
new file mode 100644
index 0000000..7b30f5e
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/_common.scss
@@ -0,0 +1,6 @@
+@import "vars";
+@import "struct";
+
+.myvars {
+ content: quote($import_counter);
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/_struct.scss b/node_modules/node-sass/test/fixtures/depth-first/_struct.scss
new file mode 100644
index 0000000..f3152b7
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/_struct.scss
@@ -0,0 +1,3 @@
+.common-struct {
+ content: "common-struct";
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/_vars.scss b/node_modules/node-sass/test/fixtures/depth-first/_vars.scss
new file mode 100644
index 0000000..da5a7f2
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/_vars.scss
@@ -0,0 +1,5 @@
+$import_counter: $import_counter + 1;
+
+.common-vars {
+ content: "common-vars";
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/a.scss b/node_modules/node-sass/test/fixtures/depth-first/a.scss
new file mode 100644
index 0000000..6c815de
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/a.scss
@@ -0,0 +1,7 @@
+@import "_common";
+@import "a1";
+
+.a2 {
+ content: "a2";
+}
+
diff --git a/node_modules/node-sass/test/fixtures/depth-first/a1.scss b/node_modules/node-sass/test/fixtures/depth-first/a1.scss
new file mode 100644
index 0000000..272671b
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/a1.scss
@@ -0,0 +1,3 @@
+.a1 {
+ content: "a1";
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/b.scss b/node_modules/node-sass/test/fixtures/depth-first/b.scss
new file mode 100644
index 0000000..2f21d7d
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/b.scss
@@ -0,0 +1,5 @@
+@import "b1";
+
+.b2 {
+ content: "b2";
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/b1.scss b/node_modules/node-sass/test/fixtures/depth-first/b1.scss
new file mode 100644
index 0000000..ec7b88d
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/b1.scss
@@ -0,0 +1,3 @@
+.b1 {
+ content: "b1";
+}
diff --git a/node_modules/node-sass/test/fixtures/depth-first/expected.css b/node_modules/node-sass/test/fixtures/depth-first/expected.css
new file mode 100644
index 0000000..f83c268
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/expected.css
@@ -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"; } \ No newline at end of file
diff --git a/node_modules/node-sass/test/fixtures/depth-first/index.scss b/node_modules/node-sass/test/fixtures/depth-first/index.scss
new file mode 100644
index 0000000..09b0e76
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/depth-first/index.scss
@@ -0,0 +1,8 @@
+$import_counter: 0;
+@import "a";
+@import "common";
+@import "b";
+
+#the-last {
+ content: "LAST";
+}