-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
211 lines (184 loc) · 5.32 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/**
Paths to project folders
**/
const paths = {
input: "src/",
output: "public/",
html: {
input: "src/views/pages/**/*.html",
output: "public/",
nunjunks: ["src/views/templates/", "src/views/partials/"],
purge: "src/views/**/*.html"
},
scripts: {
input: "src/scripts/index.ts",
output: "public/"
},
styles: {
input: "src/styles/index.css",
output: "public/"
},
static: {
input: "src/static/**/*",
output: "public/"
},
reload: "./public/"
};
/**
Packages
**/
// General
const gulp = require("gulp");
const size = require("gulp-size");
const cache = require("gulp-cache");
const del = require("del");
// HTML
const nunjucksRender = require("gulp-nunjucks-render");
const htmlMinimizer = require("gulp-html-minimizer");
// Scripts
const esbuild = require("gulp-esbuild");
// Styles
const cssvariables = require("postcss-css-variables");
const cssimport = require("postcss-import");
const concat = require("gulp-concat");
const postcss = require("gulp-postcss");
const autoprefixer = require("autoprefixer");
const cssnano = require("cssnano");
const purgecss = require("@fullhuman/postcss-purgecss");
// BrowserSync
const browserSync = require("browser-sync").create();
const isDevelopment = process.env.NODE_ENV === "development";
/**
Tasks
**/
// Remove pre-existing content from output folders
function cleanPublic(done) {
// Clean the public folder
del.sync([paths.output]);
// Signal completion
return done();
};
// Process nunjunk templates to output folder
function buildHTML() {
return gulp.src(paths.html.input)
.pipe(nunjucksRender({
data: {
isDevelopment
},
path: paths.html.nunjunks,
watch: false
}))
.pipe(htmlMinimizer({
removeComments: true,
removeEmptyAttributes: true,
sortAttributes: true,
sortClassName: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
keepClosingSlash: true,
minifyCSS: true,
minifyJS: true
}))
.pipe(gulp.dest(paths.html.output))
.pipe(size({ pretty: true, showFiles: true, showTotal: false }))
.pipe(browserSync.reload({ stream: true }));
};
// Process javascript to output folder
function buildScripts() {
browserSync.notify("Compiling javascript...");
return gulp.src(paths.scripts.input)
.pipe(esbuild({
loader: { ".ts": "ts" },
outfile: "bundle.min.js",
bundle: true,
minify: true,
sourcemap: true
}))
.pipe(gulp.dest(paths.scripts.output))
.pipe(size({ pretty: true, showFiles: true, showTotal: false }))
.pipe(browserSync.reload({ stream: true }));
};
// Process stylesheets to output folder
function buildStyles() {
browserSync.notify("Compiling styles...");
return gulp.src(paths.styles.input)
.pipe(postcss([
cssimport(),
cssvariables(),
autoprefixer(),
cssnano({
preset: ["default", {
discardComments: {
removeAll: true
}
}]
}),
purgecss({
content: [paths.html.purge],
fontFace: true,
keyframes: true,
variables: true
})
]))
.pipe(concat("bundle.min.css"))
.pipe(gulp.dest(paths.styles.output))
.pipe(size({ pretty: true, showFiles: true, showTotal: false }))
.pipe(browserSync.reload({ stream: true }));
};
// Copy static assets to output folder
function copyStaticAssets() {
// Copy static files
return gulp.src(paths.static.input)
.pipe(gulp.dest(paths.static.output));
};
// Watch for changes to the src directory
function startServer(done) {
// Initialize BrowserSync
browserSync.init({
files: [paths.output],
open: false,
host: "localhost",
port: 3000,
server: {
baseDir: paths.output,
serveStaticOptions: {
extensions: ["html"]
}
}
});
// Signal completion
done();
};
// Build task
const buildTask = gulp.series(
cleanPublic,
buildStyles,
buildScripts,
buildHTML,
copyStaticAssets
);
// Reload the browser when files change
function reloadBrowser(done) {
cache.clearAll();
browserSync.notify("Reloading site...");
browserSync.reload();
done();
};
// Watch for changes
function watchSource(done) {
browserSync.notify("Watching files...");
gulp.watch(paths.input, gulp.series(buildTask, reloadBrowser));
done();
};
// Build, watch and reload
const serveTask = gulp.series(
buildTask,
startServer,
watchSource
);
/**
Export Tasks
**/
gulp.task("serve", serveTask);
gulp.task("build", buildTask);
gulp.task(buildTask);