-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
72 lines (57 loc) · 1.45 KB
/
gulpfile.babel.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
import gulp from 'gulp';
import mjml from'gulp-mjml';
import imagemin from 'gulp-imagemin';
import browser from 'browser-sync';
function reload(done) {
browser.reload();
done();
}
function browserServe(done) {
browser.init({
server: 'dist'
});
done();
}
const basePaths = {
src: 'src/',
dest: 'dist/'
};
const paths = {
html: {
src: basePaths.src + '*.mjml',
dest: basePaths.dest + ''
},
includes: {
src: basePaths.src + 'includes/*.mjml'
},
components: {
src: basePaths.src + 'components/*.mjml'
}
};
// Watch for file changes
function watchFiles() {
gulp.watch(paths.html.src).on('change', gulp.series(mjmlBuild, reload));
gulp.watch(paths.includes.src).on('change', gulp.series(mjmlBuild, reload));
gulp.watch(paths.components.src).on('change', gulp.series(mjmlBuild, reload));
}
function mjmlBuild() {
return gulp.src(paths.html.src)
.pipe(mjml())
.pipe(gulp.dest(paths.html.dest))
}
function optimizeImgs () {
return gulp.src('src/images/**/*.{jpg,png,svg}')
.pipe(imagemin([
imagemin.mozjpeg({quality: 80, progressive: true}),
imagemin.optipng({optimizationLevel: 5}),
imagemin.svgo({
plugins: [
{removeViewBox: true},
{cleanupIDs: false}
]
})
]))
.pipe(gulp.dest('dist/images'));
}
gulp.task('default', gulp.series(mjmlBuild, browserServe, watchFiles));
gulp.task('build', gulp.series(mjmlBuild, optimizeImgs, watchFiles));