mkdir-recursive
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -0,1 +1,6 @@ | ||
v0.0.2 / 2015-02-26 | ||
================== | ||
* Fix absolute path | ||
v0.0.1 / 2015-02-25 | ||
@@ -2,0 +7,0 @@ ================== |
@@ -45,3 +45,4 @@ 'use strict'; | ||
if (path.isAbsolute(root) === true) { | ||
chunk = '/'; // build from absolute path | ||
chunks.shift(); // remove "/" | ||
chunk = path.sep; // build from absolute path | ||
} else { | ||
@@ -73,3 +74,4 @@ chunk = path.resolve(); // build with relative path | ||
if (path.isAbsolute(root) === true) { | ||
chunk = '/'; // build from absolute path | ||
chunks.shift(); // remove "/" | ||
chunk = path.sep; // build from absolute path | ||
} else { | ||
@@ -76,0 +78,0 @@ chunk = path.resolve(); // build with relative path |
{ | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"name": "mkdir-recursive", | ||
@@ -34,3 +34,3 @@ "description": "make/remove (synchronous) directories recursively", | ||
"engines": { | ||
"node": ">=0.10" | ||
"node": ">=0.12" | ||
}, | ||
@@ -40,5 +40,5 @@ "scripts": { | ||
"test": "mocha --bail --check-leaks", | ||
"test-cov": "cd test;istanbul cover ../node_modules/mocha/bin/_mocha --report lcovonly -- *.js" | ||
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly" | ||
}, | ||
"license": "GPLv3" | ||
} |
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
44202
219