-
-
Notifications
You must be signed in to change notification settings - Fork 557
/
gulpfile.js
313 lines (273 loc) · 6.99 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
// This file is used to collect and process all the site's assets, to help
// generate the live website. You can read more about Gulp here:
// https://gulpjs.com/
// This setup is based on Chris Ferdinandi's excellent Gulp Boilerplate
// project: https://gomakethings.com/a-new-gulp-boilerplate/
// Settings ///////////////////////////////////////////////////////////////////
// Turn on/off build features
var settings = {
clean: true,
favicons: false,
icons: true,
images: true, lint: true,
misc: true,
polyfills: true,
reload: true,
scripts: true,
styleguide: true,
styles: true,
svgs: true
};
// Paths to project folders ///////////////////////////////////////////////////
var paths = {
input: 'src/',
output: 'dist/',
scripts: {
input: 'src/js/**/*.js',
polyfills: 'src/js/**/*.polyfill.js',
output: 'dist/js/'
},
styles: {
input: 'src/css/**/*.scss',
output: 'dist/css/'
},
images: {
input: 'src/img/**/*.{jpg,jpeg,gif,webm,webp,png}',
output: 'dist/img/'
},
icons: {
input: 'src/img/icons/*.svg',
output: 'dist/'
},
svgs: {
input: 'src/img/**/*.svg',
output: 'dist/img/'
},
reload: './dist/'
};
// Gulp Packages //////////////////////////////////////////////////////////////
// General
var { src, dest, watch, series, parallel, lastRun } = require('gulp');
var kss = require('kss');
var rename = require('gulp-rename');
// Scripts
var jshint = require('gulp-jshint');
var terser = require('gulp-terser');
// Styles
var sass = require('gulp-sass')(require('sass'));
var prefix = require('gulp-autoprefixer');
var minify = require('gulp-cssnano');
var gulpStylelint = require('gulp-stylelint');
var purgeCSS = require('gulp-purgecss');
// SVGs
var svgmin = require('gulp-svgmin');
var svgSprite = require('gulp-svg-sprite');
// BrowserSync
var browserSync = require('browser-sync').create();
// Package Config /////////////////////////////////////////////////////////////
var configIcons = {
mode: {
symbol: {
dest: 'img',
sprite: 'icons.svg',
example: false
}
},
svg: {
xmlDeclaration: false,
doctypeDeclaration: false
}
};
// Tasks //////////////////////////////////////////////////////////////////////
// Lint, minify, and concatenate scripts
var buildScripts = function (done) {
// Make sure this feature is activated before running
if (!settings.scripts) return done();
// Run tasks on script files
var scriptSrc = [paths.scripts.input];
if (!settings.polyfills) {
scriptSrc.push('!' + paths.scripts.polyfills);
}
return src(scriptSrc, { since: lastRun(buildScripts) })
.pipe(terser())
.pipe(rename({ suffix: '.min'}))
.pipe(dest(paths.scripts.output));
};
// Lint scripts
var lintScripts = function (done) {
// Make sure this feature is activated before running
if (!settings.lint) return done();
// Lint scripts
return src(paths.scripts.input, { since: lastRun(lintScripts) })
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
};
// Process, lint, and minify Sass files
var buildStyles = function (done) {
// Make sure this feature is activated before running
if (!settings.styles) return done();
// Run tasks on all Sass files
return (
src(paths.styles.input)
.pipe(
sass.sync({
outputStyle: "expanded",
sourceComments: true,
})
)
.pipe(
purgeCSS({
content: ["src/**/*.njk", "src/**/*.md"],
safelist: {
standard: [
"a",
"atrule",
"attr-name",
"attr-value",
"bold",
"boolean",
"builtin",
"cdata",
"char",
"comment",
"constant",
"deleted",
"doctype",
"entity",
"function",
"important",
"inserted",
"italic",
"keyword",
"number",
"operator",
"prolog",
"property",
"punctuation",
"regex",
"selector",
"string",
"symbol",
"tag",
"token",
"url",
"variable",
],
deep: [/^c-content/],
greedy: [/^c-form/, /h5/, /data-user-theme/, /data-colors-scheme/],
},
})
)
.pipe(
prefix({
cascade: true,
remove: true,
})
)
// .pipe(dest(paths.styles.output))
.pipe(rename({ suffix: ".min" }))
.pipe(
minify({
discardComments: {
removeAll: true,
},
})
)
.pipe(dest(paths.styles.output))
.pipe(browserSync.stream())
);
};
// Lint styles
var lintStyles = function (done) {
// Make sure this feature is activated before running
if (!settings.lint) return done();
// Lint scripts
return src(paths.styles.input, { since: lastRun(lintStyles) })
.pipe(gulpStylelint({
reporters: [
{ formatter: 'string', console: true }
]
}));
};
// Process images
var processImages = function (done) {
// Make sure this feature is activated before running
if (!settings.images) return done();
return src(paths.images.input, { since: lastRun(processImages) })
.pipe(dest(paths.images.output));
};
// Process icons
var processIcons = function (done) {
// Make sure this feature is activated before running
if (!settings.icons) return done();
return src(paths.icons.input)
.pipe(svgSprite(configIcons))
.pipe(dest(paths.icons.output));
};
// Optimize SVG files
var buildSVGs = function (done) {
// Make sure this feature is activated before running
if (!settings.svgs) return done();
// Optimize SVG files
return src(paths.svgs.input, { since: lastRun(buildSVGs) })
.pipe(svgmin())
.pipe(dest(paths.svgs.output));
};
// Build styleguide
var buildStyleguide = function (done) {
// Make sure this feature is activated before running
if (!settings.styleguide) return done();
// Generate styleguide with these congig options
return kss({
css: '../css/screen.min.css',
destination: 'dist/styleguide',
placeholder: "[modifier]",
source: 'src/css',
title: "Styleguide - The A11Y Project"
});
};
// Watch for changes to the src directory
var startServer = function (done) {
// Make sure this feature is activated before running
if (!settings.reload) return done();
// Initialize BrowserSync
browserSync.init({
server: {
baseDir: paths.reload
}
});
done();
};
// Reload the browser when files change
var reloadBrowser = function (done) {
if (!settings.reload) return done();
browserSync.reload();
done();
};
var styles = parallel(lintStyles, buildStyles);
var scripts = parallel(lintScripts, buildScripts);
// Watch for changes
var watchSource = function() {
watch(paths.styles.input, styles);
watch(paths.scripts.input, series(scripts, reloadBrowser));
watch(paths.images.input, series(processImages, reloadBrowser));
watch(paths.icons.input, series(processIcons, reloadBrowser));
watch(paths.svgs.input, series(buildSVGs, reloadBrowser));
watch('./dist/**/*.html', reloadBrowser);
};
// Export Tasks ///////////////////////////////////////////////////////////////
// Default task: `gulp`
exports.default = parallel(
styles,
scripts,
processImages,
processIcons,
buildSVGs,
buildStyleguide
)
// Watch and reload: `gulp watch`
exports.watch = series(
exports.default,
startServer,
watchSource
);