-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
327 lines (298 loc) · 12.5 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
// ========================================================================== //
// CONSTANTS
// ========================================================================== //
// Dependencies
const { src, dest, lastRun, watch, series } = require("gulp");
const autoprefixer = require("gulp-autoprefixer");
const browserSync = require("browser-sync").create();
const cacheBust = require("gulp-cache-bust");
const cleanCss = require("gulp-clean-css");
const del = require("del");
const directorySync = require("gulp-directory-sync");
const fileInclude = require("gulp-file-include");
const flatten = require("gulp-flatten");
const groupCssMediaQueries = require("gulp-group-css-media-queries");
const header = require("gulp-header");
const imagemin = require("gulp-imagemin");
const notify = require("gulp-notify");
const path = require("path");
const pkg = require("./package.json");
const plumber = require("gulp-plumber");
const rename = require("gulp-rename");
const sass = require("gulp-sass")(require("sass"));
const stripCssComments = require("gulp-strip-css-comments");
const uglifyEs = require("gulp-uglify-es");
// ========================================================================== //
// BANNER
// ========================================================================== //
const banner = [
"/* ================================================================================ */\n" +
"/* Project: <%= package.title %>\n" +
"/* Author: <%= package.author.name %>\n" +
"/* Date: " +
new Date() +
"\n" +
"/* \n" +
"/* Copyright © " +
new Date().getFullYear() +
" <%= package.author.company %>\n" +
"/* <%= package.author.url %>\n" +
"/* ================================================================================ */\n\n",
].join("\n");
// ========================================================================== //
// HTML
// ========================================================================== //
// ========================================================================== //
// This task compiles source HTML files, places the files in the
// destination path, and reloads the page.
// ========================================================================== //
function html() {
return src([
pkg.paths.src.root + "**/*.html",
"!" + pkg.paths.src.root + "partials/**/*.html",
"!" + pkg.paths.src.root + "shared/*.html",
])
.pipe(
fileInclude({
prefix: "@@",
basepath: "@file",
})
)
.pipe(
cacheBust({
type: "timestamp",
})
)
.pipe(dest([pkg.paths.docs.root]))
.pipe(browserSync.stream());
}
// ========================================================================== //
// CSS
// ========================================================================== //
// ========================================================================== //
// This task compiles source SCSS files, strips comments, adds vendor prefixes, combines
// media queries, minifies, appends ".min" to the filenames before the extension, places
// the files in the destination path, and reloads the page. If an error occurs, the
// "plumber" pipe prevents the stream from breaking and displays the error via popup.
// ========================================================================== //
function css() {
return (
src([pkg.paths.src.scss + "**/*.scss"])
.pipe(
plumber({
errorHandler: notify.onError("Error: <%= error.message %>"),
})
)
// .pipe(sourcemaps.init())
.pipe(sass().on("error", sass.logError))
.pipe(
stripCssComments({
preserve: false,
})
)
.pipe(
autoprefixer({
cascade: false,
})
)
.pipe(groupCssMediaQueries())
// .pipe(sourcemaps.write('./'))
.pipe(
flatten({
includeParents: 0,
})
)
.pipe(
cleanCss({
level: {
2: {
restructureRules: true,
},
},
})
)
.pipe(
rename({
suffix: ".min",
})
)
.pipe(
header(banner, {
package: pkg,
})
)
.pipe(dest([pkg.paths.docs.css]))
.pipe(browserSync.stream())
);
}
// ========================================================================== //
// IMAGES
// ========================================================================== //
// ========================================================================== //
// This task optimizes source image files, and places the files in the destination path.
// ========================================================================== //
function images() {
return src([pkg.paths.src.img + "**/*"], {
since: lastRun(images),
})
.pipe(directorySync(pkg.paths.src.img, pkg.paths.docs.img))
.pipe(
imagemin(
[
imagemin.gifsicle({
interlaced: true,
optimizationLevel: 3,
}),
imagemin.mozjpeg({
progressive: true,
}),
imagemin.optipng({}),
// imagemin.svgo({
// plugins: [
// // { addAttributesToSVGElement: true },
// // { addClassesToSVGElement: true },
// { cleanupAttrs: true },
// { cleanupEnableBackground: true },
// { cleanupIDs: true },
// { cleanupListOfValues: true },
// { cleanupNumericValues: true },
// { collapseGroups: true },
// { convertColors: true },
// // { convertEllipseToCircle: true },
// { convertPathData: true },
// // { convertShapeToPath: true },
// { convertStyleToAttrs: true },
// { convertTransform: true },
// { inlineStyles: true },
// { mergePaths: true },
// // { minifyStyles: true },
// // { moveElemsAttrsToGroup: true },
// // { moveGroupAttrsToElems: true },
// // { prefixIDs: true },
// // { removeAttributesBySelector: true },
// // { removeAttrs: true },
// { removeComments: true },
// { removeDesc: true },
// // { removeDimensions: true },
// { removeDoctype: true },
// { removeEditorsNSData: true },
// // { removeElementsByAttr: true },
// { removeEmptyAttrs: true },
// { removeEmptyContainers: true },
// { removeEmptyText: true },
// { removeHiddenElems: true },
// { removeMetadata: true },
// { removeNonInheritableGroupAttrs: true },
// // { removeOffCanvasPaths: true },
// { removeRasterImages: true },
// { removeScriptElement: true },
// { removeStyleElement: true },
// { removeTitle: true },
// { removeUnknownsAndDefaults: true },
// { removeUnusedNS: true },
// { removeUselessDefs: true },
// { removeUselessStrokeAndFill: true },
// { removeViewBox: true },
// // { removeXMLNS: true },
// { removeXMLProcInst: true },
// // { reusePaths: true },
// { sortAttrs: true },
// // { sortDefsChildren: true }
// ]
// })
],
{
verbose: true,
}
)
)
.pipe(dest([pkg.paths.docs.img]))
.pipe(browserSync.stream());
}
// ========================================================================== //
// JS
// ========================================================================== //
// ========================================================================== //
// This task strips console, alert, and debugger statements from source JS files, minifies,
// appends ".min" to the filenames before the extension, places the files in the
// destination path, and reloads the page. If an error occurs, the "plumber" pipe prevents
// the stream from breaking and displays the error via popup.
// ========================================================================== //
function js() {
return (
src([pkg.paths.src.js + "**/*.js"], {
since: lastRun(js),
})
.pipe(
plumber({
errorHandler: notify.onError("Error: <%= error.message %>"),
})
)
.pipe(
flatten({
includeParents: 0,
})
)
// .pipe(stripDebug())
.pipe(uglifyEs.default())
.pipe(
rename({
suffix: ".min",
})
)
.pipe(
header(banner, {
package: pkg,
})
)
.pipe(dest([pkg.paths.docs.js]))
.pipe(browserSync.stream())
);
}
// ========================================================================== //
// SERVE
// ========================================================================== //
// ========================================================================== //
// This task launches a local Browsersync server in a browser, watches for file changes,
// and runs the respective task when changes are detected.
// ========================================================================== //
function serve() {
// Browsersync
browserSync.init({
notify: false,
server: pkg.paths.docs.root,
});
// HTML
watch([pkg.paths.src.root + "**/*.html"], series(html))
.on("add", series(html))
.on("unlink", (filepath) => {
const srcPath = path.relative(
path.resolve(pkg.paths.src.root),
filepath
);
const destPath = path.resolve(pkg.paths.docs.root, srcPath);
del.sync(destPath);
});
// CSS
watch([pkg.paths.src.scss + "**/*.scss"], series(css));
// Images
watch([pkg.paths.src.img + "**/*"], series(images));
// JS
watch([pkg.paths.src.js + "**/*.js"], series(js));
}
// ========================================================================== //
// DEFAULT
// ========================================================================== //
// ========================================================================== //
// This task sequentially runs a series of tasks for local development, launches a local
// server, watches for file changes, and reloads the page when changes are detected.
// ========================================================================== //
exports.default = series(html, css, images, js, serve);
// ========================================================================== //
// BUILD
// ========================================================================== //
// ========================================================================== //
// This task sequentially runs a series of tasks, without launching a local server or
// watching for file changes.
// ========================================================================== //
exports.build = series(html, css, images, js);