-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
61 lines (53 loc) · 1.29 KB
/
gulpfile.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
import gulp from 'gulp';
import { isProd } from './gulp/app.js';
import { path } from './gulp/path.js';
import del from './gulp/del.js';
import font from './gulp/font.js';
import img from './gulp/img.js';
import js from './gulp/js.js';
import publicFiles from './gulp/public-files.js';
import sass from './gulp/sass.js';
import twig from './gulp/twig.js';
import { reload, serve } from './gulp/server.js';
function watch() {
gulp.watch(path.font.watch, gulp.series(font, reload));
gulp.watch(path.img.watch, gulp.series(img, reload));
gulp.watch(path.js.watch, gulp.series(js, reload));
gulp.watch(path.public.watch, gulp.series(publicFiles, reload));
gulp.watch(path.sass.watch, sass);
gulp.watch(path.twig.watch, gulp.series(twig, reload));
}
function compileFiles() {
return gulp.series(
del,
gulp.parallel(font, img, js, publicFiles, sass, twig),
);
}
function startServer() {
return gulp.parallel(serve, watch);
}
function startDevServer() {
return gulp.series(
compileFiles(),
startServer(),
);
}
const dev = startDevServer();
const prod = compileFiles();
const build = compileFiles();
const preview = startServer();
export {
del,
font,
img,
js,
publicFiles,
sass,
serve,
twig,
dev,
prod,
build,
preview,
};
export default isProd ? prod : dev;