Andreas
Andreas
@KeithGillette Okay, what a bummer. Thank you for instant feedback. The point is, I do use `chokidar` for file watching and paulmillr/chokidar#566 describes exactly your bug with deletion of empty...
Sure, use the tool which satisfies your needs best. Hmh, interesting. But I don't think so because `node-sync-files` is using an outdated `chokidar` version [`^1.0.0-rc3`](https://github.com/byteclubfr/node-sync-files/blob/master/package.json#L33) and `node-sync-glob` is using a...
@KeithGillette Thanks for your offer to help. Meanwhile I asked my brother if he has windows 10, and if I can grap his notebook. So I will see what I...
I just tested it on windows 10 and unfortunately I found even more bugs. 1. Deleting **empty** sub directory does nothing, neither syncing nor error logging. 2. Creating a `New...
I just installed `node-inspector` and it logs an error though the windows CLI does not print it... ```sh Error watching file for changes: EPERM ``` I tracked the call stack...
I got a failing test now: https://ci.appveyor.com/project/AndyOGo/node-sync-glob/build/1.0.71/job/mvjw85ufp2bhxxvg#L789 ```sh FAIL test\sync.spec.js (8.87s) ● node-sync-glob watch › should sync empty sub directory deletion ENOTEMPTY: directory not empty, rmdir 'C:\projects\node-sync-glob\tmp\mock' at Object.fs.rmdirSync (fs.js:856:18)...
Well the empty test dir `tmp/mock/bar/empty` is not recognized by `glob-all` on initial mirroring... **Windows:** https://ci.appveyor.com/project/AndyOGo/node-sync-glob/build/1.0.75/job/yp5tk3x4sm246vj6#L865 ```sh console.log src\index.js:94 [ 'tmp\\mock\\@org', 'tmp\\mock\\@org\\a.txt', 'tmp\\mock\\@org\\b.txt', 'tmp\\mock\\@org\\d.txt', 'tmp\\mock\\a.txt', 'tmp\\mock\\b.txt', 'tmp\\mock\\bar', 'tmp\\mock\\bar\\c.txt', 'tmp\\mock\\foo', 'tmp\\mock\\foo\\b.txt',...
`tmp/mock/bar` folder does not exist on windows, hence no `empty` subfolder within can be created... ```sh console.log src\index.js:101 sources: tmp/mock/**/* -> tmp/mock/**/* console.log src\index.js:102 target: tmp/sync -> tmp\sync console.log src\index.js:103...
A new file watcher just got released for node 😱 `NSFW` ... [Node Sentinel File Watcher](https://blog.axosoft.com/2017/02/16/nsfw/) 🎉 I will try that
@david-hollifield never tested a space case. Need to add test spec for that too.