diff options
author | 2020-11-18 23:26:45 +0100 | |
---|---|---|
committer | 2020-11-18 23:26:45 +0100 | |
commit | 81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch) | |
tree | 8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/node-sass/test/fixtures/depth-first | |
parent | 1870f3fdf43707a15fda0f609a021f516f45eb63 (diff) | |
download | website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2 website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip |
rm node_modules
Diffstat (limited to 'node_modules/node-sass/test/fixtures/depth-first')
9 files changed, 0 insertions, 72 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 deleted file mode 100644 index 7b30f5e..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/_common.scss +++ /dev/null @@ -1,6 +0,0 @@ -@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 deleted file mode 100644 index f3152b7..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/_struct.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index da5a7f2..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/_vars.scss +++ /dev/null @@ -1,5 +0,0 @@ -$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 deleted file mode 100644 index 6c815de..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/a.scss +++ /dev/null @@ -1,7 +0,0 @@ -@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 deleted file mode 100644 index 272671b..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/a1.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index 2f21d7d..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/b.scss +++ /dev/null @@ -1,5 +0,0 @@ -@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 deleted file mode 100644 index ec7b88d..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/b1.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index f83c268..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/expected.css +++ /dev/null @@ -1,32 +0,0 @@ -.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 deleted file mode 100644 index 09b0e76..0000000 --- a/node_modules/node-sass/test/fixtures/depth-first/index.scss +++ /dev/null @@ -1,8 +0,0 @@ -$import_counter: 0; -@import "a"; -@import "common"; -@import "b"; - -#the-last { - content: "LAST"; -} |