Comparing version 0.1.0 to 0.1.1
@@ -111,5 +111,5 @@ var async = require('async') | ||
.on('error', function(err) { | ||
console.error(error) | ||
console.error(err) | ||
}) | ||
}) | ||
} |
@@ -6,3 +6,3 @@ { | ||
"author": "Matthew Z Haralovich", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"repository" : { | ||
@@ -9,0 +9,0 @@ "type" : "git", |
@@ -5,3 +5,3 @@ # Duplet | ||
This script merges the contents of two folders by comparing the modification times of their files. Newer files will completely overwrite older files in the same position. Deletions are also mirrored if Duplet is watching. *Use with caution.* | ||
This script merges the contents of two folders by comparing the modification times of their files. Newer files will completely overwrite older files in the same position. Deletions are also mirrored if Duplet is watching. **Use with caution.** | ||
@@ -16,2 +16,3 @@ ## Installation | ||
var duplet = require('duplet') | ||
duplet('folder-a', 'folder-b') | ||
@@ -22,3 +23,3 @@ ``` | ||
Ignore files matching regexp. | ||
Ignore files matching regexp. In this case ignore files ending with `.meta`. | ||
@@ -29,2 +30,2 @@ ``` | ||
Regexp is tested against the *whole path*, not just the file name. | ||
Regexp is tested against the **whole path**, not just the file name. |
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
5005
27