From a1f2fba9f5a138f4d54c70efa006b9939352e20d Mon Sep 17 00:00:00 2001 From: Eduardo Stuart Date: Mon, 27 Jul 2015 10:27:46 -0300 Subject: [PATCH] Missing plugin options FIX - Missing plugin options inside CSS compiler. --- tasks/shared/Css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/shared/Css.js b/tasks/shared/Css.js index 74d4d8e..88232e6 100644 --- a/tasks/shared/Css.js +++ b/tasks/shared/Css.js @@ -14,7 +14,7 @@ module.exports = function(options) { gulp .src(options.src.path) .pipe($.if(config.sourcemaps, $.sourcemaps.init())) - .pipe(options.compiler()) + .pipe(options.compiler(options.pluginOptions)) .on('error', function(e) { new Elixir.Notification().error(e, name + ' Compilation Failed');