extensionless
Advanced tools
Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "extensionless", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -10,3 +10,3 @@ import {readFileSync, stat} from 'fs' | ||
} catch (e) { | ||
if (e.code !== 'ENOENT' && e.code !== 'EISDIR') throw e | ||
if (!['ENOTDIR', 'ENOENT', 'EISDIR'].includes(e.code)) throw e | ||
} | ||
@@ -13,0 +13,0 @@ } while (!pkgJson && curDir !== (upDir = dirname(curDir))) |
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
5534