From 11f1c08456948b30dab04d4964bc589c16500385 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 15 May 2017 22:50:01 +0300 Subject: [PATCH] bugfix... Signed-off-by: Alex A. Naanou --- features.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features.js b/features.js index 083b6ea..3d8e164 100755 --- a/features.js +++ b/features.js @@ -482,7 +482,7 @@ var FeatureSetProto = { // with actual feature tags later... // if a tag is exclusive then at least one feature // with it is present... - if(!that[d] && !exclusive[d]){ + if(!that[d] && !exclusive[d] && d[0] != '-'){ var m = missing[k] = missing[k] || [] m.push(d) } diff --git a/package.json b/package.json index 8c861a0..7fd0cec 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ig-features", - "version": "2.2.3", + "version": "2.2.4", "description": "", "main": "features.js", "scripts": {