Akuma Isaac Akuma
Akuma Isaac Akuma
@codenoid Create a demo
@liamsorsby did you set `watcherInstance.SetMaxEvents(1)` to one?
If so it will likely emit ` Write` event from the source direct directory.
@FogDong if you're not using the CLI you can use this to filter that out ```go if event.IsDir() && event.Op == watcher.Write { continue } ``` but for CLI you...
I solved mine like this ```go func isFileOpen(filePath string) (state bool) { state = false prevSize := int64(0) count := 0 for { stat, err := os.Stat(filePath) if err !=...
I think it's working as it supposed to, you can use the snippet below to bypass that ```go if event.Op == watcher.Write && event.IsDir() { continue } ```
I am sorry but I don't know
Hi @marklawlor, any update on this? This is our biggest roadblock with `expo-router` and we have already done with migration from `react-navigation` before bumping into this.
@pkaske you're welcome let me know if face any problem
Getting the same issue ```log 1 | pongWait = setTimeout(() => { 22 | socket.terminate(); 23 | }, keepAlive), socket.once("pong", () => { 24 | if (pongWait) 25 | clearTimeout(pongWait),...