From ef3af917aedeb9226eba40220c10b1be69dcf8a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Guti=C3=A9rrez?= Date: Mon, 7 Sep 2015 04:00:44 +0200 Subject: [PATCH] Make processString honor exclude field in config --- lib/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core.js b/lib/core.js index e776822..03951e5 100644 --- a/lib/core.js +++ b/lib/core.js @@ -396,7 +396,7 @@ var Comb = function(predefinedOptions) { var context = options && options.context; var tree; - if (!text) return text; + if (!text || !_this.shouldProcessFile(filename)) return text; // TODO: Parse different syntaxes _this.syntax = syntax || 'css';