-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathfix-watch.js
75 lines (64 loc) · 1.49 KB
/
fix-watch.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import chokidar from 'chokidar'
import { $ } from 'execa'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const here = (...p) => path.join(__dirname, ...p)
const workshopRoot = here('..')
const watchPath = path.join(workshopRoot, './exercises/*')
const watcher = chokidar.watch(watchPath, {
ignored: /(^|[/\\])\../, // ignore dotfiles
persistent: true,
ignoreInitial: true,
depth: 2,
})
const debouncedRun = debounce(run, 200)
// Add event listeners.
watcher
.on('addDir', path => {
debouncedRun()
})
.on('unlinkDir', path => {
// Only act if path contains two slashes (excluding the leading `./`)
debouncedRun()
})
.on('error', error => console.log(`Watcher error: ${error}`))
/**
* Simple debounce implementation
*/
function debounce(fn, delay) {
let timer = null
return (...args) => {
if (timer) clearTimeout(timer)
timer = setTimeout(() => {
fn(...args)
}, delay)
}
}
let running = false
async function run() {
if (running) {
console.log('still running...')
return
}
running = true
try {
await $({
stdio: 'inherit',
cwd: workshopRoot,
})`node ./scripts/fix.js`
} catch (error) {
throw error
} finally {
running = false
}
}
console.log(`watching ${watchPath}`)
// doing this because the watcher doesn't seem to work and I don't have time
// to figure out why 🙃
console.log('Polling...')
setInterval(() => {
run()
}, 1000)
console.log('running fix to start...')
run()