forked from AdvisorySG/ghost-advisory-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
87 lines (75 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const { series, watch, src, dest, parallel } = require("gulp");
const pump = require("pump");
// gulp plugins and utils
const livereload = require("gulp-livereload");
const postcss = require("gulp-postcss");
const zip = require("gulp-zip");
const terser = require("gulp-terser-js");
// postcss plugins
const atImport = require("postcss-import");
const tailwindcss = require("tailwindcss");
function serve(done) {
livereload.listen();
done();
}
const handleError = (done) => (err) => done(err);
function hbs(done) {
pump(
[src(["*.hbs", "**/*.hbs", "!node_modules/**/*.hbs"]), livereload()],
handleError(done)
);
}
function css(done) {
var processors = [atImport, tailwindcss];
pump(
[
src("assets/css/*.css", { sourcemaps: true }),
postcss(processors),
dest("assets/built/", { sourcemaps: "." }),
livereload(),
],
handleError(done)
);
}
function js(done) {
pump(
[
src("assets/js/*.js", { sourcemaps: true }),
terser({
mangle: { toplevel: true },
}),
dest("assets/built/", { sourcemaps: "." }),
livereload(),
],
handleError(done)
);
}
function zipper(done) {
var targetDir = "dist/";
var themeName = require("./package.json").name;
var filename = themeName + ".zip";
pump(
[
src([
"**",
"!node_modules",
"!node_modules/**",
"!dist",
"!dist/**",
]),
zip(filename),
dest(targetDir),
],
handleError(done)
);
}
const cssWatcher = () => watch("assets/css/**", css);
const jsWatcher = () => watch("assets/js/**", series(js, css));
const hbsWatcher = () =>
watch(["*.hbs", "**/**/*.hbs", "!node_modules/**/*.hbs"], series(hbs, css));
const watcher = parallel(cssWatcher, jsWatcher, hbsWatcher);
const build = series(css, js);
const dev = series(build, serve, watcher);
exports.build = build;
exports.zip = series(build, zipper);
exports.default = dev;