summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/test/fixtures/watcher
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
commite06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch)
tree55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/node-sass/test/fixtures/watcher
downloadwebsite_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip
api, login, auth
Diffstat (limited to 'node_modules/node-sass/test/fixtures/watcher')
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/one.scss5
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/partials/_one.scss5
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/partials/_three.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/partials/_two.scss5
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/three.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/main/two.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/sibling/partials/_three.scss3
-rw-r--r--node_modules/node-sass/test/fixtures/watcher/sibling/three.scss5
8 files changed, 32 insertions, 0 deletions
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/one.scss b/node_modules/node-sass/test/fixtures/watcher/main/one.scss
new file mode 100644
index 0000000..414af5e
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/one.scss
@@ -0,0 +1,5 @@
+@import "partials/one";
+
+.one {
+ color: red;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/partials/_one.scss b/node_modules/node-sass/test/fixtures/watcher/main/partials/_one.scss
new file mode 100644
index 0000000..379ec65
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/partials/_one.scss
@@ -0,0 +1,5 @@
+@import "partials/three";
+
+.one {
+ color: darkred;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/partials/_three.scss b/node_modules/node-sass/test/fixtures/watcher/main/partials/_three.scss
new file mode 100644
index 0000000..1846e9a
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/partials/_three.scss
@@ -0,0 +1,3 @@
+.three {
+ color: darkgreen;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/partials/_two.scss b/node_modules/node-sass/test/fixtures/watcher/main/partials/_two.scss
new file mode 100644
index 0000000..7a1ace9
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/partials/_two.scss
@@ -0,0 +1,5 @@
+@import "partials/three";
+
+.two {
+ color: darkblue;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/three.scss b/node_modules/node-sass/test/fixtures/watcher/main/three.scss
new file mode 100644
index 0000000..24cab72
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/three.scss
@@ -0,0 +1,3 @@
+.three {
+ color: green;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/main/two.scss b/node_modules/node-sass/test/fixtures/watcher/main/two.scss
new file mode 100644
index 0000000..68036db
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/main/two.scss
@@ -0,0 +1,3 @@
+.two {
+ color: blue;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/sibling/partials/_three.scss b/node_modules/node-sass/test/fixtures/watcher/sibling/partials/_three.scss
new file mode 100644
index 0000000..1846e9a
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/sibling/partials/_three.scss
@@ -0,0 +1,3 @@
+.three {
+ color: darkgreen;
+}
diff --git a/node_modules/node-sass/test/fixtures/watcher/sibling/three.scss b/node_modules/node-sass/test/fixtures/watcher/sibling/three.scss
new file mode 100644
index 0000000..4e9d1a7
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/watcher/sibling/three.scss
@@ -0,0 +1,5 @@
+@import "partials/three";
+
+.three {
+ color: green;
+}