logger4node
Advanced tools
Comparing version 0.0.17 to 0.1.0
{ | ||
"name": "logger4node", | ||
"version": "0.0.17", | ||
"version": "0.1.0", | ||
"description": "", | ||
@@ -21,20 +21,20 @@ "main": "index.js", | ||
"dependencies": { | ||
"util": "^0.12.3" | ||
"util": "^0.12.4" | ||
}, | ||
"devDependencies": { | ||
"@types/debug": "^4.1.5", | ||
"@types/node": "^14.14.10", | ||
"@typescript-eslint/eslint-plugin": "^4.9.0", | ||
"@typescript-eslint/parser": "^4.9.0", | ||
"eslint": "^7.14.0", | ||
"@types/node": "^15.12.4", | ||
"@typescript-eslint/eslint-plugin": "^4.28.0", | ||
"@typescript-eslint/parser": "^4.28.0", | ||
"eslint": "^7.29.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-promise": "^5.1.0", | ||
"eslint-plugin-typescript": "^0.14.0", | ||
"node-tslint-rules": "^1.20.3", | ||
"ts-node": "^9.1.0", | ||
"ts-node": "^10.0.0", | ||
"tslint": "^6.1.3", | ||
"typescript": "^4.1.2" | ||
"typescript": "^4.3.4" | ||
} | ||
} |
@@ -23,3 +23,3 @@ "use strict"; | ||
debug: '\x1b[34m', | ||
error: '\x1b[31m', | ||
error: '\x1b[31m', // Red | ||
}; | ||
@@ -53,3 +53,3 @@ const matches = []; | ||
static matches(value) { | ||
return matches.every((pattern) => new RegExp(`^${pattern}$`).test(value)); | ||
return matches.some((pattern) => new RegExp(`^${pattern}$`).test(value)); | ||
} | ||
@@ -56,0 +56,0 @@ static doesNotMatches(value) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8983
Updatedutil@^0.12.4