get-system-fonts
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -0,1 +1,8 @@ | ||
## [2.0.2](https://github.com/princjef/get-system-fonts/compare/v2.0.1...v2.0.2) (2020-06-12) | ||
### Bug Fixes | ||
* **no:** add option to regexp ignoreCase ([#8](https://github.com/princjef/get-system-fonts/issues/8)) ([0b3271f](https://github.com/princjef/get-system-fonts/commit/0b3271f)) | ||
## [2.0.1](https://github.com/princjef/get-system-fonts/compare/v2.0.0...v2.0.1) (2019-04-23) | ||
@@ -2,0 +9,0 @@ |
@@ -19,3 +19,3 @@ "use strict"; | ||
await Promise.all(baseDirs.map(async (baseDir) => { | ||
const files = await recursiveWalkInternal(path.resolve(baseDir), new RegExp(`\\.${extensions.map(ext => `(?:${ext})`).join('|')}$`)); | ||
const files = await recursiveWalkInternal(path.resolve(baseDir), new RegExp(`\\.${extensions.map(ext => `(?:${ext})`).join('|')}$`, 'i')); | ||
for (const file of files) { | ||
@@ -22,0 +22,0 @@ results.add(file); |
{ | ||
"name": "get-system-fonts", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "List full paths to all system fonts", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/princjef/get-system-fonts#readme", |
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
21693