From 81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 Mon Sep 17 00:00:00 2001 From: Piotr Russ Date: Wed, 18 Nov 2020 23:26:45 +0100 Subject: rm node_modules --- .../test/fixtures/depth-first/_common.scss | 6 ---- .../test/fixtures/depth-first/_struct.scss | 3 -- .../node-sass/test/fixtures/depth-first/_vars.scss | 5 ---- .../node-sass/test/fixtures/depth-first/a.scss | 7 ----- .../node-sass/test/fixtures/depth-first/a1.scss | 3 -- .../node-sass/test/fixtures/depth-first/b.scss | 5 ---- .../node-sass/test/fixtures/depth-first/b1.scss | 3 -- .../test/fixtures/depth-first/expected.css | 32 ---------------------- .../node-sass/test/fixtures/depth-first/index.scss | 8 ------ 9 files changed, 72 deletions(-) delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/_common.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/_struct.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/_vars.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/a.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/a1.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/b.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/b1.scss delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/expected.css delete mode 100644 node_modules/node-sass/test/fixtures/depth-first/index.scss (limited to 'node_modules/node-sass/test/fixtures/depth-first') 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"; -} -- cgit v1.2.3