diff --git a/lib/_copy.js b/lib/_copy.js index 5ff3907..b31268b 100644 --- a/lib/_copy.js +++ b/lib/_copy.js @@ -14,11 +14,14 @@ function ncp (source, dest, options, callback) { var basePath = process.cwd() var currentPath = path.resolve(basePath, source) var targetPath = path.resolve(basePath, dest) + var filter = options.filter var transform = options.transform var clobber = options.clobber !== false var dereference = options.dereference + var errs = null + var started = 0 var finished = 0 var running = 0