summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/test/fixtures/extras
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/extras
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/extras')
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_arrays_of_importers.js12
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_functions_setter.js10
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_functions_string_conversion.js8
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_data.js5
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_data_cb.js5
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_error.js3
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_file.js7
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data.js6
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data_cb.js6
-rw-r--r--node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_cb.js7
10 files changed, 69 insertions, 0 deletions
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
new file mode 100644
index 0000000..38c1c08
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_arrays_of_importers.js
@@ -0,0 +1,12 @@
+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
new file mode 100644
index 0000000..9ec8c24
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_functions_setter.js
@@ -0,0 +1,10 @@
+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
new file mode 100644
index 0000000..3aa4eb8
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_functions_string_conversion.js
@@ -0,0 +1,8 @@
+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
new file mode 100644
index 0000000..23f272a
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data.js
@@ -0,0 +1,5 @@
+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
new file mode 100644
index 0000000..d587304
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_data_cb.js
@@ -0,0 +1,5 @@
+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
new file mode 100644
index 0000000..eb1c959
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_error.js
@@ -0,0 +1,3 @@
+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
new file mode 100644
index 0000000..ad7b17d
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file.js
@@ -0,0 +1,7 @@
+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
new file mode 100644
index 0000000..e29f042
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data.js
@@ -0,0 +1,6 @@
+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
new file mode 100644
index 0000000..e24f05e
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_and_data_cb.js
@@ -0,0 +1,6 @@
+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
new file mode 100644
index 0000000..dc5b8bd
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/extras/my_custom_importer_file_cb.js
@@ -0,0 +1,7 @@
+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')))
+ });
+};