directory-sync
Advanced tools
Comparing version 2.0.19 to 2.0.20
{ | ||
"name": "directory-sync", | ||
"version": "2.0.19", | ||
"version": "2.0.20", | ||
"description": "Easily synchronize directories between two machines over the internet.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -423,3 +423,3 @@ import Path from 'path'; | ||
* @param {String} path | ||
* @param {FileSystem.Stats} stats | ||
* @param {FileSystem.Stats=} stats | ||
* @returns {boolean} | ||
@@ -462,3 +462,3 @@ */ | ||
// Assert the watcher ignored on this directory | ||
if (this._is_watcher_ignored(path, stats)) return; | ||
if (this._is_watcher_ignored(path)) return; | ||
@@ -524,3 +524,3 @@ // Retrieve the relative path to the directory | ||
// Assert the watcher ignored on this file | ||
if (this._is_watcher_ignored(path, stats)) return; | ||
if (this._is_watcher_ignored(path)) return; | ||
@@ -527,0 +527,0 @@ // Retrieve the relative path to the directory |
84474