-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.export.js
367 lines (323 loc) · 8.9 KB
/
gulpfile.export.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
const fs = require('fs');
const gulp = require('gulp');
const log = require('fancy-log');
const cleanFnc = require('./gulp-tasks/gulp-clean');
const config = require('./gulpconfig.export');
const copyStaticFnc = require('./gulp-tasks/gulp-copy-static');
const cssCompileFnc = require('./gulp-tasks-export/gulp-compile-sass');
const cssPurgeFnc = require('./gulp-tasks-build/gulp-purgecss');
const datasetPrepareFnc = require('./gulp-tasks/gulp-dataset-prepare');
const deployFtpFnc = require('./gulp-tasks/gulp-deploy-ftp');
const faviconsFnc = require('./gulp-tasks/gulp-favicons');
const fontLoadFnc = require('./gulp-tasks/gulp-font-load');
const htmlBuildFnc = require('./gulp-tasks-export/gulp-html-build');
const htmlValidateFnc = require('./gulp-tasks/gulp-html-validate');
const imagesOptimizeFnc = require('./gulp-tasks/gulp-optimize-images');
const jsProcessFnc = require('./gulp-tasks-export/gulp-process-js');
require('dotenv').config();
// Variables
// --------------
const showLogs = false;
// Gulp functions
// --------------
/**
* Cleans the folders specified in the `config.buildBase` variable.
* @returns {Promise} A promise that resolves when the folders are cleaned.
*/
function cleanFolders() {
return cleanFnc([config.tempBase, config.buildBase]);
}
/**
* Copies static files from the source directory to the build directory.
* @param {Function} done - Callback function to be called when the copying is complete.
* @returns {Promise} - A promise that resolves when the copying is complete.
*/
function copyStatic(done) {
return copyStaticFnc(
[
`${config.staticBase}/*`,
`${config.staticBase}/**/*`,
`${config.staticBase}/.*/*`,
],
config.staticBase,
config.buildBase,
{
verbose: showLogs,
cb: () => {
done();
},
},
);
}
/**
* Validates HTML files.
* @param {Function} done - Callback function to be called when the validation is complete.
* @returns {Promise} A promise that resolves when the HTML files are validated.
*/
function htmlValidate(done) {
return htmlValidateFnc(`${config.buildBase}/**/*.html`, {
verbose: showLogs,
cb: () => {
done();
},
});
}
/**
* Deploys files to FTP server.
* @param {Function} done - Callback function to be called when deployment is complete.
* @returns {Promise} - A promise that resolves when the deployment is complete.
*/
function deployFtp(done) {
return deployFtpFnc(`${config.buildBase}/**`, `${config.buildBase}/`, '.', {
verbose: showLogs,
cb: () => {
done();
},
});
}
// SASS
/**
* Compiles Sass core files.
* @param {Function} done - Callback function to be called when the compilation is done.
* @returns {object} - The result of the cssCompileFnc function.
*/
function compileSassAll(done) {
return cssCompileFnc(
config.sassAll,
config.sassBuild,
'index.css',
config.postcssPluginsBase,
{
cb: () => {
done();
},
},
);
}
/**
* Purges unused CSS from the specified files and directories.
* @param {Function} done - The callback function to be called when the purge is complete.
* @returns {object} - The result of the purge operation.
*/
function purgecss(done) {
return cssPurgeFnc(
[`${config.buildBase}/**/*index*.css`],
[`${config.buildBase}/**/*.html`],
config.buildBase,
{
cb: () => {
done();
},
},
);
}
// JS
/**
* Processes JavaScript files.
* @param {Function} done - Callback function to be called when processing is complete.
* @returns {void}
*/
function processJs(done) {
const params = {
concatFiles: true,
outputConcatPrefixFileName: 'app',
cb: () => {
done();
},
};
return jsProcessFnc(config.jsFiles, config.jsBuild, params);
}
// Dataset
/**
* Prepares the dataset for the site.
* @param {Function} done - The callback function to be called when the dataset preparation is complete.
* @returns {Promise} A promise that resolves when the dataset preparation is complete.
*/
function datasetPrepareSite(done) {
return datasetPrepareFnc(`${config.contentBase}/site.md`, config.tempBase, {
verbose: showLogs,
cb: () => {
done();
},
});
}
/**
* Prepares dataset pages.
* @param {Function} done - The callback function to be called when the dataset pages are prepared.
* @returns {void}
*/
function datasetPreparePages(done) {
return datasetPrepareFnc(
config.datasetPagesSource,
config.datasetPagesBuild,
{
verbose: showLogs,
cb: () => {
done();
},
},
);
}
// Templates
/**
* Builds the pages using the specified parameters.
* @param {Function} done - The callback function to be called when the build is complete.
* @returns {object} - The result of the htmlBuildFnc function.
*/
function buildPages(done) {
const params = {
input: `${config.tplPagesBase}/**/*.html`,
output: config.tplBuild,
templates: config.tplTemplatesBase,
processPaths: [config.tplPagesBase, config.tplTemplatesBase],
siteConfig: `${config.tempBase}/site.json`,
dataSource: config.datasetPagesBuild,
injectCdnJs: config.injectCdnJs,
injectJs: config.injectJs,
injectCss: config.injectCss,
injectIgnorePath: config.buildBase.replace('./', ''),
cb: () => {
done();
},
};
return htmlBuildFnc(params);
}
// GFX
/**
* Optimizes images in different formats (jpg, png, svg).
* @param {Function} done - Callback function to be called when the task is complete.
* @returns {Function} - The callback function passed as a parameter.
*/
function images(done) {
const params = {
verbose: showLogs,
cb: () => {
done();
},
};
imagesOptimizeFnc.optimizeJpg(config.imagesJpg, config.gfxBuild, params);
imagesOptimizeFnc.optimizePng(config.imagesPng, config.gfxBuild, params);
imagesOptimizeFnc.optimizeSvg(config.imagesSvg, config.gfxBuild, params);
return done();
}
// Favicons
/**
* Generate favicons and perform necessary file operations.
* @param {Function} done - Callback function to be called when the task is done.
* @returns {void}
*/
function favicons(done) {
return faviconsFnc(config.faviconSourceFile, config.faviconBuild, {
config: config.faviconGenConfig,
verbose: showLogs,
cb: () => {
done();
// Move `favicon.ico` to project root
fs.rename(
`${config.faviconBuild}/favicon.ico`,
`${config.buildBase}/favicon.ico`,
(err) => {
if (err) throw err;
},
);
// Move `favicons.njk` and edit file content
fs.readFileSync(
`${config.faviconBuild}/favicons.njk`,
'utf8',
(err, data) => {
if (err) throw err;
// Remove link to moved `favicon.ico`
const newValue = data.replace(/<link rel="shortcut icon[^>]*>/g, '');
fs.writeFileSync(
`${config.tplTemplatesBase}/partials/favicons.njk`,
newValue,
'utf8',
(err2) => {
if (err2) {
throw err;
} else {
// log('Done!');
try {
fs.unlinkSync(`${config.faviconBuild}/favicons.njk`);
// log('Removed!');
} catch (err3) {
log.error(err3);
}
}
},
);
},
);
},
});
}
// Fonts
/**
* Loads fonts using the specified configuration.
* @param {Function} done - The callback function to be called when the font loading is complete.
* @returns {void}
*/
function fontLoad(done) {
return fontLoadFnc(config.fontloadFile, config.tempBase, {
config: config.fontLoadConfig,
verbose: showLogs,
cb: () => {
copyStaticFnc(
`${config.tempBase}/assets/font/*`,
`${config.tempBase}/assets/font`,
`${config.buildBase}/assets/font`,
{
cb: () => {
done();
},
},
);
},
});
}
/**
* Performs post-build tasks.
* @param {Function} done - Callback function to be called when post-build tasks are completed.
*/
function postbuild(done) {
fs.unlink(`${config.buildBase}/assets/favicons/favicons.njk`, (err) => {
if (err) {
log.error(err);
}
});
// htmlValidate();
done();
}
// Gulp tasks
// --------------
gulp.task('css', compileSassAll);
gulp.task('js', processJs);
gulp.task('dataset', gulp.parallel(datasetPrepareSite, datasetPreparePages));
gulp.task(
'html',
gulp.series(datasetPrepareSite, datasetPreparePages, buildPages),
);
gulp.task('images', images);
gulp.task('fonts', fontLoad);
gulp.task('validate', htmlValidate);
gulp.task(
'export',
gulp.series(
cleanFolders,
images,
copyStatic,
datasetPrepareSite,
datasetPreparePages,
favicons,
fontLoad,
compileSassAll,
processJs,
buildPages,
purgecss,
htmlValidate,
postbuild,
),
);
gulp.task('deployFtp', gulp.series('export', deployFtp));
// Aliases
gulp.task('default', gulp.series('export'));