-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
88 lines (69 loc) · 1.79 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
const { src, dest, series, parallel, watch } = require('gulp');
const $ = require('gulp-load-plugins')({
pattern: ['gulp-*', 'gulp.*', '@*/gulp{-,.}*', 'autoprefixer', 'browser-sync', 'cssnano'],
postRequireTransforms: {
sass: sass => {
return sass(require('sass'));
},
},
});
const paths = {
htmlSrc: './src/html/**/*.kit',
sassSrc: './src/sass/**/*.scss',
jsSrc: './src/js/**/*.js',
imgSrc: './src/img/**/*',
sassDest: './dist/css',
jsDest: './dist/js',
imgDest: './dist/img',
};
const buildHtml = cb => {
src(paths.htmlSrc)
.pipe($.kit())
.pipe($.htmlmin({ collapseWhitespace: true }))
.pipe(dest('./'));
cb();
};
const buildStyles = cb => {
const plugins = [$.autoprefixer(), $.cssnano()];
src(paths.sassSrc, { sourcemaps: true })
.pipe($.sass().on('error', $.sass.logError))
.pipe($.postcss(plugins))
.pipe($.rename({ suffix: '.min' }))
.pipe(dest(paths.sassDest, { sourcemaps: true }));
cb();
};
const buildJavaScript = cb => {
src(paths.jsSrc, { sourcemaps: true })
.pipe(
$.babel({
presets: ['@babel/env'],
})
)
.pipe($.uglify())
.pipe($.rename({ suffix: '.min' }))
.pipe(dest(paths.jsDest, { sourcemaps: true }));
cb();
};
const optimizeImages = cb => {
src(paths.imgSrc).pipe($.imagemin()).pipe(dest(paths.imgDest));
cb();
};
const cleanDist = cb => {
src('./dist', { read: false }).pipe($.clean());
cb();
};
const runLiveServer = cb => {
$.browserSync.init({
server: {
baseDir: './',
},
});
watch(
[paths.htmlSrc, paths.sassSrc, paths.jsSrc, paths.imgSrc],
parallel(buildHtml, buildStyles, buildJavaScript, optimizeImages)
).on('change', $.browserSync.reload);
cb();
};
const tasks = parallel(buildHtml, buildStyles, buildJavaScript, optimizeImages);
exports.cleanDist = cleanDist;
exports.default = series(tasks, runLiveServer);