@eik/common
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -0,1 +1,8 @@ | ||
## [2.0.3](https://github.com/eik-lib/common/compare/v2.0.2...v2.0.3) (2021-02-11) | ||
### Bug Fixes | ||
* handle file keys starting with . correctly ([01c0dd8](https://github.com/eik-lib/common/commit/01c0dd8f9f4485ef35489629526c5871e35a83e8)) | ||
## [2.0.2](https://github.com/eik-lib/common/compare/v2.0.1...v2.0.2) (2021-02-10) | ||
@@ -2,0 +9,0 @@ |
@@ -74,4 +74,7 @@ const { promisify } = require('util'); | ||
} | ||
const basename = path.basename(pathname); | ||
const url = new URL(pathname, 'http://origin'); | ||
const basename = path.basename(url.pathname); | ||
const isNamedDest = basename.includes('.'); | ||
if (isNamedDest) { | ||
@@ -78,0 +81,0 @@ if (filePaths.length > 1) |
{ | ||
"name": "@eik/common", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "Common utilities for Eik modules", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
29575
596