install-local-dependencies
Advanced tools
Comparing version 0.2.1 to 0.2.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.2.2](https://github.com/body-builder/install-local-dependencies/compare/v0.2.1...v0.2.2) (2021-10-25) | ||
### Bug Fixes | ||
* Windows backslash-issue in `get_ignore_rules()` ([efb7571](https://github.com/body-builder/install-local-dependencies/commit/efb75710f4e721c35587d2bb55d919a5908ccf00)) | ||
### [0.2.1](https://github.com/body-builder/install-local-dependencies/compare/v0.2.0...v0.2.1) (2021-10-21) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "install-local-dependencies", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Yet another local dependency installer", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/body-builder/install-local-dependencies#readme", |
@@ -6,3 +6,3 @@ const path = require('path'); | ||
const { validate_path, promisified, default_ignore_rules } = require('./helpers') | ||
const { validate_path, promisified, default_ignore_rules, definitely_posix } = require('./helpers') | ||
@@ -77,3 +77,3 @@ /** | ||
return all_rules.map((pattern) => path.join(relative_package_path, pattern)); | ||
return all_rules.map((pattern) => definitely_posix(path.join(relative_package_path, pattern))); | ||
} | ||
@@ -80,0 +80,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
30566