diff --git a/lib/features.js b/lib/features.js index 7ccf9b4..4372f64 100644 --- a/lib/features.js +++ b/lib/features.js @@ -23,7 +23,9 @@ var variables = require('rework-vars'); exports.import = function(options){ return 'undefined' == typeof window && options.source - ? importer() + ? importer({ + path: options.paths + }) : function(){}; }; diff --git a/test/features/import.css b/test/features/import.css index 4ad7e20..a262ec3 100644 --- a/test/features/import.css +++ b/test/features/import.css @@ -1,6 +1,8 @@ @import "import.include.css"; +@import "paths-example/import.include.css"; + body { color: red; -} \ No newline at end of file +} diff --git a/test/features/import.out.css b/test/features/import.out.css index c19cb88..fb8df21 100644 --- a/test/features/import.out.css +++ b/test/features/import.out.css @@ -3,6 +3,10 @@ html { color: black; } +span { + color: black; +} + body { color: red; -} \ No newline at end of file +} diff --git a/test/index.js b/test/index.js index df4671b..2ed738e 100644 --- a/test/index.js +++ b/test/index.js @@ -38,7 +38,7 @@ describe('features', function(){ describe(slug, function(){ it('should add ' + slug + ' node support', function(){ - var css = myth(input, { source: source }); + var css = myth(input, { source: source, paths: [__dirname]}); assert.equal(css.trim(), expected.trim()); }); diff --git a/test/paths-example/import.include.css b/test/paths-example/import.include.css new file mode 100644 index 0000000..ea4b519 --- /dev/null +++ b/test/paths-example/import.include.css @@ -0,0 +1,4 @@ + +span { + color: black; +}