-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
91 lines (66 loc) · 2.47 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
const { src, dest, parallel, series, watch } = require('gulp');
const browserSync = require('browser-sync').create();
const concat = require('gulp-concat');
// Подключаем модули gulp-sass
const sass = require('gulp-sass');
// Подключаем Autoprefixer
const autoprefixer = require('gulp-autoprefixer');
// Подключаем модуль gulp-clean-css
const cleancss = require('gulp-clean-css');
// Подключаем gulp-imagemin для работы с изображениями
const imagemin = require('gulp-imagemin');
// Подключаем модуль gulp-newer
const newer = require('gulp-newer');
// Подключаем модуль del
const del = require('del');
function browsersync() {
browserSync.init({
server: { baseDir: 'app/' },
notify: false,
online: true
})
}
function startWatch() {
watch('app/**/*.scss', styles);
watch('app/**/*.html').on('change', browserSync.reload);
watch('app/images/src/**/*', images);
}
function styles() {
return src('app/' + 'scss' + '/style.' + 'scss' + '')
.pipe(sass())
.pipe(concat('style.min.css'))
.pipe(autoprefixer({ overrideBrowserslist: ['last 10 versions'], grid: true }))
.pipe(cleancss({ level: { 1: { specialComments: 0 } }/* , format: 'beautify' */ }))
.pipe(dest('app/css/'))
.pipe(browserSync.stream())
}
function images() {
return src('app/images/src/**/*')
.pipe(newer('app/images/dest/'))
.pipe(imagemin())
.pipe(dest('app/images/dest/'))
}
function cleanimg() {
return del('app/images/dest/**/*', { force: true })
}
function cleandist() {
return del('dist/**/*', { force: true })
}
function buildcopy() {
return src([
'app/css/**/*.min.css',
'app/js/**/*.min.js',
'app/images/dest/**/*',
'app/**/*.html',
], { base: 'app' })
.pipe(dest('dist'))
}
exports.cleanimg = cleanimg;
exports.images = images;
// Экспортируем функцию styles() в таск styles
exports.styles = styles;
exports.browsersync = browsersync;
exports.cleandist = cleandist;
exports.build = series(cleandist, styles, buildcopy);
/* exports.build = series(cleandist, cleanimg, styles, images, buildcopy); */ //серия, сборка проекта
exports.default = parallel(browsersync, startWatch); // непосредственная работа в браузере, разработка проекта