Comparing version 0.16.2 to 0.16.3
@@ -0,1 +1,6 @@ | ||
0.16.3 / 2015-01-28 | ||
------------------- | ||
- reverted https://github.com/jprichardson/node-fs-extra/commit/1ee77c8a805eba5b99382a2591ff99667847c9c9 | ||
0.16.2 / 2015-01-28 | ||
@@ -2,0 +7,0 @@ ------------------- |
@@ -17,11 +17,2 @@ //most (all at this time) of this code was written by Andrew Kelley | ||
source = path.normalize(source) | ||
dest = path.normalize(dest) | ||
var diff = path.relative(source, dest) | ||
if (diff !== '' && diff.indexOf('..')) { | ||
var err = new Error("Can't move source into dest if dest is in source.") | ||
return callback(err) | ||
} | ||
var shouldMkdirp = !!options.mkdirp | ||
@@ -28,0 +19,0 @@ var clobber = options.clobber !== false |
{ | ||
"name": "fs-extra", | ||
"version": "0.16.2", | ||
"version": "0.16.3", | ||
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jprichardson/node-fs-extra", |
37159
661