license-badger
Advanced tools
Comparing version 0.14.1 to 0.14.2
# CHANGES for license-badger | ||
## 0.14.2 | ||
- Fix: Ensure sorting order of `filteredTypes` follows users' order | ||
## 0.14.1 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "license-badger", | ||
"version": "0.14.1", | ||
"version": "0.14.2", | ||
"description": "Builds a badge indicating your project's license(s) and those of its dependencies.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -221,2 +221,4 @@ 'use strict'; | ||
return (checkNonempty && licenseCount) || filteredTypes.includes(type); | ||
}).sort(([typeA], [typeB]) => { | ||
return filteredTypes.indexOf(typeA) > filteredTypes.indexOf(typeB); | ||
}); | ||
@@ -223,0 +225,0 @@ } |
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
86513
910