-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwatch.js
50 lines (39 loc) · 1.36 KB
/
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
const fs = require('fs');
const gulp = require('gulp');
const sassGrapher = require('@rmacklin/sass-graph');
const path = require('path');
const touch = require('touch');
const buildTask = require('./build');
const buildImagesTask = require('./build-images');
const buildStylesTask = require('./build-styles');
let sassGraph;
function buildGraph() {
sassGraph = sassGrapher.parseDir('./app/assets/stylesheets');
}
const watch = gulp.series(buildTask, function watchFiles() {
buildGraph();
gulp.watch(buildImagesTask.files, buildImagesTask);
gulp.watch(buildStylesTask.files, buildStylesTask);
// Trigger recompilation of stylesheet entry points when their dependencies
// are modified
const watcher = gulp.watch(buildStylesTask.additionalWatchFiles);
watcher.on('all', (type, filepath) => {
const rebuildGraphAfterTraversal = !fs.existsSync(filepath);
if (!rebuildGraphAfterTraversal) {
buildGraph();
}
const absolutePath = path.join(__dirname, '..', '..', '..', filepath);
sassGraph.visitAncestors(absolutePath, (parent) => {
if (parent.includes('stylesheets/packs')) {
if (fs.existsSync(parent)) {
touch.sync(parent);
}
}
});
if (rebuildGraphAfterTraversal) {
buildGraph();
}
});
});
watch.description = 'Watch files for changes and trigger recompilation';
module.exports = watch;