From 3c707bd423fd142bf2601e41f63112066578ff3e Mon Sep 17 00:00:00 2001 From: q-- Date: Thu, 16 Nov 2017 22:43:52 +0100 Subject: [PATCH] Low confidence for 2-character environment variables (#1831) These can be automatically generated by the Google Closure Compiler (which will, if configured, replace global variables with auto-generated ones such as aa, ab, ac et cetera.) Hence, they are a less reliable indication that a library which would also set said variable is present. --- src/apps.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/apps.json b/src/apps.json index c7a399418..983e46721 100644 --- a/src/apps.json +++ b/src/apps.json @@ -2322,7 +2322,10 @@ "12" ], "icon": "ef.js.svg", - "env": "^ef|efCore$", + "env": [ + "^ef$\\;confidence:20", + "^efCore$" + ], "script": "/ef(?:-core)?(?:\\.min|\\.dev)?\\.js", "website": "http://ef.js.org" }, @@ -4401,7 +4404,7 @@ "cats": [ "12" ], - "env": "^ko$", + "env": "^ko$\\;confidence:20", "icon": "Knockout.js.png", "website": "http://knockoutjs.com" }, @@ -7963,7 +7966,7 @@ "cats": [ "12" ], - "env": "^io$", + "env": "^io$\\;confidence:20", "icon": "Socket.io.png", "implies": "Node.js", "script": "socket.io.*\\.js",