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 | |
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')
79 files changed, 0 insertions, 487 deletions
diff --git a/node_modules/node-sass/test/fixtures/compressed/expected.css b/node_modules/node-sass/test/fixtures/compressed/expected.css deleted file mode 100644 index 197319f..0000000 --- a/node_modules/node-sass/test/fixtures/compressed/expected.css +++ /dev/null @@ -1 +0,0 @@ -#navbar{width:80%;height:23px}#navbar ul{list-style-type:none}#navbar li{float:left}#navbar li a{font-weight:bold} diff --git a/node_modules/node-sass/test/fixtures/compressed/index.scss b/node_modules/node-sass/test/fixtures/compressed/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/compressed/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css deleted file mode 100644 index 9b67ea9..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css +++ /dev/null @@ -1,3 +0,0 @@ -div { - width: 42rem; - height: 84px; } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter.scss b/node_modules/node-sass/test/fixtures/custom-functions/setter.scss deleted file mode 100644 index fbc6116..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/setter.scss +++ /dev/null @@ -1 +0,0 @@ -div { width: foo(42px); height: bar(42px); } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css deleted file mode 100644 index 741d2cb..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css +++ /dev/null @@ -1,2 +0,0 @@ -div { - color: "barbar"; } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss deleted file mode 100644 index 4e6403f..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss +++ /dev/null @@ -1 +0,0 @@ -div { color: foo("bar"); } diff --git a/node_modules/node-sass/test/fixtures/cwd-include-path/expected.css b/node_modules/node-sass/test/fixtures/cwd-include-path/expected.css deleted file mode 100644 index 1cfd35a..0000000 --- a/node_modules/node-sass/test/fixtures/cwd-include-path/expected.css +++ /dev/null @@ -1,2 +0,0 @@ -.outside { - color: red; } diff --git a/node_modules/node-sass/test/fixtures/cwd-include-path/outside.scss b/node_modules/node-sass/test/fixtures/cwd-include-path/outside.scss deleted file mode 100644 index 9568623..0000000 --- a/node_modules/node-sass/test/fixtures/cwd-include-path/outside.scss +++ /dev/null @@ -1,3 +0,0 @@ -.outside { - color: red; -} diff --git a/node_modules/node-sass/test/fixtures/cwd-include-path/root/index.scss b/node_modules/node-sass/test/fixtures/cwd-include-path/root/index.scss deleted file mode 100644 index 0279f78..0000000 --- a/node_modules/node-sass/test/fixtures/cwd-include-path/root/index.scss +++ /dev/null @@ -1 +0,0 @@ -@import 'outside'; 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"; -} diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_arrays_of_importers.js b/node_modules/node-sass/test/fixtures/extras/my_custom_arrays_of_importers.js deleted file mode 100644 index 38c1c08..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_arrays_of_importers.js +++ /dev/null @@ -1,12 +0,0 @@ -var sass = require('../../..'); - -module.exports = [ - function() { - return sass.NULL; - }, - function() { - return { - contents: 'div {color: yellow;}' - }; - } -]; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_functions_setter.js b/node_modules/node-sass/test/fixtures/extras/my_custom_functions_setter.js deleted file mode 100644 index 9ec8c24..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_functions_setter.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = { - 'foo($a)': function(size) { - size.setUnit('rem'); - return size; - }, - 'bar($a)': function(size) { - size.setValue(size.getValue() * 2); - return size; - } -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_functions_string_conversion.js b/node_modules/node-sass/test/fixtures/extras/my_custom_functions_string_conversion.js deleted file mode 100644 index 3aa4eb8..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_functions_string_conversion.js +++ /dev/null @@ -1,8 +0,0 @@ -var sass = require('../../..'); - -module.exports = { - 'foo($a)': function(str) { - str = str.getValue().replace(/['"]/g, ''); - return new sass.types.String('"' + str + str + '"'); - } -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data.js deleted file mode 100644 index 23f272a..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = function() { - return { - contents: 'div {color: yellow;}' - }; -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data_cb.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data_cb.js deleted file mode 100644 index d587304..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data_cb.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = function(file, prev, done) { - done({ - contents: 'div {color: yellow;}' - }); -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_error.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_error.js deleted file mode 100644 index eb1c959..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_error.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function() { - return new Error('doesn\'t exist!'); -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file.js deleted file mode 100644 index ad7b17d..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file.js +++ /dev/null @@ -1,7 +0,0 @@ -var path = require('path'); - -module.exports = function(file) { - return { - file: path.resolve(path.join(process.cwd(), 'test/fixtures/include-files/', file + (path.extname(file) ? '' : '.scss'))) - }; -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data.js deleted file mode 100644 index e29f042..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = function() { - return { - file: '/some/random/path/file.scss', - contents: 'div {color: yellow;}' - }; -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data_cb.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data_cb.js deleted file mode 100644 index e24f05e..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data_cb.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = function(file, prev, done) { - done({ - file: '/some/random/path/file.scss', - contents: 'div {color: yellow;}' - }); -}; diff --git a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_cb.js b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_cb.js deleted file mode 100644 index dc5b8bd..0000000 --- a/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_cb.js +++ /dev/null @@ -1,7 +0,0 @@ -var path = require('path'); - -module.exports = function(file, /* jshint unused:false */ prev, done) { - done({ - file: path.resolve(path.join(process.cwd(), 'test/fixtures/include-files/', file + (path.extname(file) ? '' : '.scss'))) - }); -}; diff --git a/node_modules/node-sass/test/fixtures/follow/foo/bar/index.scss b/node_modules/node-sass/test/fixtures/follow/foo/bar/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/follow/foo/bar/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/include-files/bar.scss b/node_modules/node-sass/test/fixtures/include-files/bar.scss deleted file mode 100644 index f377712..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/bar.scss +++ /dev/null @@ -1 +0,0 @@ -/* bar.scss */ diff --git a/node_modules/node-sass/test/fixtures/include-files/chained-imports-with-custom-importer.scss b/node_modules/node-sass/test/fixtures/include-files/chained-imports-with-custom-importer.scss deleted file mode 100644 index 8dbe665..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/chained-imports-with-custom-importer.scss +++ /dev/null @@ -1 +0,0 @@ -@import "file-not-processed-by-loader", "file-processed-by-loader"; diff --git a/node_modules/node-sass/test/fixtures/include-files/expected-importer.css b/node_modules/node-sass/test/fixtures/include-files/expected-importer.css deleted file mode 100644 index 1925a60..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/expected-importer.css +++ /dev/null @@ -1,5 +0,0 @@ -div { - color: yellow; } - -div { - color: yellow; } diff --git a/node_modules/node-sass/test/fixtures/include-files/file-not-processed-by-loader.scss b/node_modules/node-sass/test/fixtures/include-files/file-not-processed-by-loader.scss deleted file mode 100644 index 47f8c1d..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/file-not-processed-by-loader.scss +++ /dev/null @@ -1 +0,0 @@ -$variable-defined-by-file-not-processed-by-loader: 'red'; diff --git a/node_modules/node-sass/test/fixtures/include-files/file-processed-by-loader.scss b/node_modules/node-sass/test/fixtures/include-files/file-processed-by-loader.scss deleted file mode 100644 index 4c79efe..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/file-processed-by-loader.scss +++ /dev/null @@ -1,3 +0,0 @@ -body { - color: $variable-defined-by-file-not-processed-by-loader; -} diff --git a/node_modules/node-sass/test/fixtures/include-files/foo.scss b/node_modules/node-sass/test/fixtures/include-files/foo.scss deleted file mode 100644 index 9834f54..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/foo.scss +++ /dev/null @@ -1 +0,0 @@ -/* foo.scss */ diff --git a/node_modules/node-sass/test/fixtures/include-files/index.scss b/node_modules/node-sass/test/fixtures/include-files/index.scss deleted file mode 100644 index 01bdbe2..0000000 --- a/node_modules/node-sass/test/fixtures/include-files/index.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import 'foo'; -@import 'bar'; diff --git a/node_modules/node-sass/test/fixtures/include-path/expected.css b/node_modules/node-sass/test/fixtures/include-path/expected.css deleted file mode 100644 index 1f0ae60..0000000 --- a/node_modules/node-sass/test/fixtures/include-path/expected.css +++ /dev/null @@ -1,3 +0,0 @@ -body { - background: red; - color: #0000fe; } diff --git a/node_modules/node-sass/test/fixtures/include-path/functions/colorBlue.scss b/node_modules/node-sass/test/fixtures/include-path/functions/colorBlue.scss deleted file mode 100644 index 4fa618c..0000000 --- a/node_modules/node-sass/test/fixtures/include-path/functions/colorBlue.scss +++ /dev/null @@ -1,3 +0,0 @@ -@function colorBlue() { - @return #0000fe; -} diff --git a/node_modules/node-sass/test/fixtures/include-path/index.scss b/node_modules/node-sass/test/fixtures/include-path/index.scss deleted file mode 100644 index 8b0f5e8..0000000 --- a/node_modules/node-sass/test/fixtures/include-path/index.scss +++ /dev/null @@ -1,7 +0,0 @@ -@import 'vars'; -@import 'colorBlue'; - -body { - background: $color; - color: colorBlue(); -} diff --git a/node_modules/node-sass/test/fixtures/include-path/lib/vars.scss b/node_modules/node-sass/test/fixtures/include-path/lib/vars.scss deleted file mode 100644 index 4b04915..0000000 --- a/node_modules/node-sass/test/fixtures/include-path/lib/vars.scss +++ /dev/null @@ -1 +0,0 @@ -$color: red; diff --git a/node_modules/node-sass/test/fixtures/indent/expected.css b/node_modules/node-sass/test/fixtures/indent/expected.css deleted file mode 100644 index a7df077..0000000 --- a/node_modules/node-sass/test/fixtures/indent/expected.css +++ /dev/null @@ -1,2 +0,0 @@ -foo + bar { - color: red; } diff --git a/node_modules/node-sass/test/fixtures/indent/index.sass b/node_modules/node-sass/test/fixtures/indent/index.sass deleted file mode 100644 index 3f7dfae..0000000 --- a/node_modules/node-sass/test/fixtures/indent/index.sass +++ /dev/null @@ -1,3 +0,0 @@ -foo - + bar - color: red diff --git a/node_modules/node-sass/test/fixtures/input-directory/sass/_skipped.scss b/node_modules/node-sass/test/fixtures/input-directory/sass/_skipped.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/input-directory/sass/_skipped.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/input-directory/sass/nested/three.scss b/node_modules/node-sass/test/fixtures/input-directory/sass/nested/three.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/input-directory/sass/nested/three.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/input-directory/sass/one.scss b/node_modules/node-sass/test/fixtures/input-directory/sass/one.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/input-directory/sass/one.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/input-directory/sass/two.scss b/node_modules/node-sass/test/fixtures/input-directory/sass/two.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/input-directory/sass/two.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/invalid/index.scss b/node_modules/node-sass/test/fixtures/invalid/index.scss deleted file mode 100644 index e04c557..0000000 --- a/node_modules/node-sass/test/fixtures/invalid/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -body { - background-color: $green; -} diff --git a/node_modules/node-sass/test/fixtures/output-directory/index.scss b/node_modules/node-sass/test/fixtures/output-directory/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/output-directory/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/precision/expected.css b/node_modules/node-sass/test/fixtures/precision/expected.css deleted file mode 100644 index c9a0a06..0000000 --- a/node_modules/node-sass/test/fixtures/precision/expected.css +++ /dev/null @@ -1,2 +0,0 @@ -.foo { - margin: 1.23456789 px; } diff --git a/node_modules/node-sass/test/fixtures/precision/index.scss b/node_modules/node-sass/test/fixtures/precision/index.scss deleted file mode 100644 index 328b214..0000000 --- a/node_modules/node-sass/test/fixtures/precision/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -.foo { - margin: 1.23456789 px; -} diff --git a/node_modules/node-sass/test/fixtures/sass-path/expected-orange.css b/node_modules/node-sass/test/fixtures/sass-path/expected-orange.css deleted file mode 100644 index 32b0627..0000000 --- a/node_modules/node-sass/test/fixtures/sass-path/expected-orange.css +++ /dev/null @@ -1,3 +0,0 @@ -body { - background: orange; } - diff --git a/node_modules/node-sass/test/fixtures/sass-path/expected-red.css b/node_modules/node-sass/test/fixtures/sass-path/expected-red.css deleted file mode 100644 index 3884d51..0000000 --- a/node_modules/node-sass/test/fixtures/sass-path/expected-red.css +++ /dev/null @@ -1,3 +0,0 @@ -body { - background: red; } - diff --git a/node_modules/node-sass/test/fixtures/sass-path/index.scss b/node_modules/node-sass/test/fixtures/sass-path/index.scss deleted file mode 100644 index 867386c..0000000 --- a/node_modules/node-sass/test/fixtures/sass-path/index.scss +++ /dev/null @@ -1,6 +0,0 @@ -@import 'colors'; - -body { - background: $color; -} - diff --git a/node_modules/node-sass/test/fixtures/sass-path/orange/colors.scss b/node_modules/node-sass/test/fixtures/sass-path/orange/colors.scss deleted file mode 100644 index ca95971..0000000 --- a/node_modules/node-sass/test/fixtures/sass-path/orange/colors.scss +++ /dev/null @@ -1 +0,0 @@ -$color: orange; diff --git a/node_modules/node-sass/test/fixtures/sass-path/red/colors.scss b/node_modules/node-sass/test/fixtures/sass-path/red/colors.scss deleted file mode 100644 index 4b04915..0000000 --- a/node_modules/node-sass/test/fixtures/sass-path/red/colors.scss +++ /dev/null @@ -1 +0,0 @@ -$color: red; diff --git a/node_modules/node-sass/test/fixtures/simple/expected.css b/node_modules/node-sass/test/fixtures/simple/expected.css deleted file mode 100644 index 402ae50..0000000 --- a/node_modules/node-sass/test/fixtures/simple/expected.css +++ /dev/null @@ -1,11 +0,0 @@ -#navbar { - width: 80%; - height: 23px; } - -#navbar ul { - list-style-type: none; } - -#navbar li { - float: left; } - #navbar li a { - font-weight: bold; } diff --git a/node_modules/node-sass/test/fixtures/simple/index.scss b/node_modules/node-sass/test/fixtures/simple/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/simple/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/source-comments/expected.css b/node_modules/node-sass/test/fixtures/source-comments/expected.css deleted file mode 100644 index 53b1a38..0000000 --- a/node_modules/node-sass/test/fixtures/source-comments/expected.css +++ /dev/null @@ -1,15 +0,0 @@ -/* line 1, stdin */ -#navbar { - width: 80%; - height: 23px; } - -/* line 6, stdin */ -#navbar ul { - list-style-type: none; } - -/* line 10, stdin */ -#navbar li { - float: left; } - /* line 13, stdin */ - #navbar li a { - font-weight: bold; } diff --git a/node_modules/node-sass/test/fixtures/source-comments/index.scss b/node_modules/node-sass/test/fixtures/source-comments/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/source-comments/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/source-map-embed/expected.css b/node_modules/node-sass/test/fixtures/source-map-embed/expected.css deleted file mode 100644 index 56f2e59..0000000 --- a/node_modules/node-sass/test/fixtures/source-map-embed/expected.css +++ /dev/null @@ -1,13 +0,0 @@ -#navbar { - width: 80%; - height: 23px; } - -#navbar ul { - list-style-type: none; } - -#navbar li { - float: left; } - #navbar li a { - font-weight: bold; } - -/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiZml4dHVyZXMvc291cmNlLW1hcC1lbWJlZC9pbmRleC5jc3MiLAoJInNvdXJjZXMiOiBbCgkJImZpeHR1cmVzL3NvdXJjZS1tYXAtZW1iZWQvaW5kZXguc2NzcyIKCV0sCgkibmFtZXMiOiBbXSwKCSJtYXBwaW5ncyI6ICJBQUFBLEFBQUEsT0FBTyxDQUFDO0VBQ04sS0FBSyxFQUFFLEdBQUc7RUFDVixNQUFNLEVBQUUsSUFBSSxHQUNiOztBQUVELEFBQUEsT0FBTyxDQUFDLEVBQUUsQ0FBQztFQUNULGVBQWUsRUFBRSxJQUFJLEdBQ3RCOztBQUVELEFBQUEsT0FBTyxDQUFDLEVBQUUsQ0FBQztFQUNULEtBQUssRUFBRSxJQUFJLEdBS1o7RUFORCxBQUdFLE9BSEssQ0FBQyxFQUFFLENBR1IsQ0FBQyxDQUFDO0lBQ0EsV0FBVyxFQUFFLElBQUksR0FDbEIiCn0= */ diff --git a/node_modules/node-sass/test/fixtures/source-map-embed/index.scss b/node_modules/node-sass/test/fixtures/source-map-embed/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/source-map-embed/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/source-map/expected.css b/node_modules/node-sass/test/fixtures/source-map/expected.css deleted file mode 100644 index 708bc47..0000000 --- a/node_modules/node-sass/test/fixtures/source-map/expected.css +++ /dev/null @@ -1,13 +0,0 @@ -#navbar { - width: 80%; - height: 23px; } - -#navbar ul { - list-style-type: none; } - -#navbar li { - float: left; } - #navbar li a { - font-weight: bold; } - -/*# sourceMappingURL=index.map */ diff --git a/node_modules/node-sass/test/fixtures/source-map/expected.map b/node_modules/node-sass/test/fixtures/source-map/expected.map deleted file mode 100644 index bd43765..0000000 --- a/node_modules/node-sass/test/fixtures/source-map/expected.map +++ /dev/null @@ -1,9 +0,0 @@ -{ - "version": 3, - "file": "index.css", - "sources": [ - "index.scss" - ], - "names": [], - "mappings": "AAAA,AAAA,OAAO,CAAC;EACN,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,IAAI,GACb;;AAED,AAAA,OAAO,CAAC,EAAE,CAAC;EACT,eAAe,EAAE,IAAI,GACtB;;AAED,AAAA,OAAO,CAAC,EAAE,CAAC;EACT,KAAK,EAAE,IAAI,GAKZ;EAND,AAGE,OAHK,CAAC,EAAE,CAGR,CAAC,CAAC;IACA,WAAW,EAAE,IAAI,GAClB" -} diff --git a/node_modules/node-sass/test/fixtures/source-map/index.scss b/node_modules/node-sass/test/fixtures/source-map/index.scss deleted file mode 100644 index 38a8fe6..0000000 --- a/node_modules/node-sass/test/fixtures/source-map/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -#navbar { - width: 80%; - height: 23px; -} - -#navbar ul { - list-style-type: none; -} - -#navbar li { - float: left; - - a { - font-weight: bold; - } -} diff --git a/node_modules/node-sass/test/fixtures/watcher/main/one.scss b/node_modules/node-sass/test/fixtures/watcher/main/one.scss deleted file mode 100644 index 414af5e..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/one.scss +++ /dev/null @@ -1,5 +0,0 @@ -@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 deleted file mode 100644 index 379ec65..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/partials/_one.scss +++ /dev/null @@ -1,5 +0,0 @@ -@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 deleted file mode 100644 index 1846e9a..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/partials/_three.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index 7a1ace9..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/partials/_two.scss +++ /dev/null @@ -1,5 +0,0 @@ -@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 deleted file mode 100644 index 24cab72..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/three.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index 68036db..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/main/two.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index 1846e9a..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/sibling/partials/_three.scss +++ /dev/null @@ -1,3 +0,0 @@ -.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 deleted file mode 100644 index 4e9d1a7..0000000 --- a/node_modules/node-sass/test/fixtures/watcher/sibling/three.scss +++ /dev/null @@ -1,5 +0,0 @@ -@import "partials/three"; - -.three { - color: green; -} diff --git a/node_modules/node-sass/test/fixtures/watching-dir-01/index.scss b/node_modules/node-sass/test/fixtures/watching-dir-01/index.scss deleted file mode 100644 index b189432..0000000 --- a/node_modules/node-sass/test/fixtures/watching-dir-01/index.scss +++ /dev/null @@ -1 +0,0 @@ -a {color:green;} diff --git a/node_modules/node-sass/test/fixtures/watching-dir-02/foo.scss b/node_modules/node-sass/test/fixtures/watching-dir-02/foo.scss deleted file mode 100644 index 620aa31..0000000 --- a/node_modules/node-sass/test/fixtures/watching-dir-02/foo.scss +++ /dev/null @@ -1 +0,0 @@ -body{background:white} diff --git a/node_modules/node-sass/test/fixtures/watching-dir-02/index.scss b/node_modules/node-sass/test/fixtures/watching-dir-02/index.scss deleted file mode 100644 index dece2c6..0000000 --- a/node_modules/node-sass/test/fixtures/watching-dir-02/index.scss +++ /dev/null @@ -1 +0,0 @@ -@import './foo'; diff --git a/node_modules/node-sass/test/fixtures/watching/bar.sass b/node_modules/node-sass/test/fixtures/watching/bar.sass deleted file mode 100644 index de9fd93..0000000 --- a/node_modules/node-sass/test/fixtures/watching/bar.sass +++ /dev/null @@ -1,2 +0,0 @@ -body - background: white diff --git a/node_modules/node-sass/test/fixtures/watching/index.sass b/node_modules/node-sass/test/fixtures/watching/index.sass deleted file mode 100644 index 9f146c8..0000000 --- a/node_modules/node-sass/test/fixtures/watching/index.sass +++ /dev/null @@ -1 +0,0 @@ -@import "bar.sass"; diff --git a/node_modules/node-sass/test/fixtures/watching/index.scss b/node_modules/node-sass/test/fixtures/watching/index.scss deleted file mode 100644 index 7905647..0000000 --- a/node_modules/node-sass/test/fixtures/watching/index.scss +++ /dev/null @@ -1 +0,0 @@ -@import './white'; diff --git a/node_modules/node-sass/test/fixtures/watching/white.scss b/node_modules/node-sass/test/fixtures/watching/white.scss deleted file mode 100644 index 620aa31..0000000 --- a/node_modules/node-sass/test/fixtures/watching/white.scss +++ /dev/null @@ -1 +0,0 @@ -body{background:white} |