-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.go
executable file
·60 lines (51 loc) · 1.01 KB
/
watch.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"log"
"os"
"path/filepath"
"github.com/fsnotify/fsnotify"
)
func watch() {
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
defer watcher.Close()
watchDone := make(chan bool)
go func() {
for {
select {
case ev, ok := <-watcher.Events:
if !ok {
return
}
if ev.Op&fsnotify.Write == fsnotify.Write {
build()
} else if ev.Op&fsnotify.Create == fsnotify.Create {
if ev.Name != outDir {
watcher.Add(ev.Name)
}
}
case err, ok := <-watcher.Errors:
if !ok {
return
}
panic(err)
}
}
}()
filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
if err != nil {
panic(err)
}
if root := filepath.SplitList(path)[0]; root == outDir || root == "node_modules" {
return filepath.SkipDir
}
if err = watcher.Add(path); err != nil {
logFatal("Cannot add " + path + " to watcher: " + err.Error())
}
return nil
})
logInfo("⏳ Watching for changes...")
<-watchDone
}