-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
117 lines (107 loc) · 2.77 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
"use strict";
var gulp = require('gulp'),
watch = require('gulp-watch'),
prefixer = require('gulp-autoprefixer'),
less = require('gulp-less'),
pug = require('gulp-pug'),
combineMq = require('gulp-combine-mq'),
uglify = require('gulp-uglify'),
rename = require("gulp-rename"),
cleanCSS = require('gulp-clean-css'),
imagemin = require('gulp-imagemin');
var path = {
build: {
html: 'build/',
js: 'build/js/',
css: 'build/css/',
img: 'build/img/',
fonts: 'build/fonts/'
},
src: {
pug: 'src/html/*.pug',
js: 'src/js/main.js',
style: 'src/less/style.less',
img: 'src/img/**/*.*',
fonts: 'src/fonts/**/*.*'
},
watch: {
html: 'src/html/*.pug',
js: 'src/js/**/*.js',
style: 'src/less/**/*.less',
img: 'src/img/**/*.*',
fonts: 'src/fonts/**/*.*'
},
clean: './build'
};
// Компиляция HTML
gulp.task('html', function () {
gulp.src(path.src.pug)
.pipe(pug({pretty: '\t'}))
.pipe(gulp.dest(path.build.html));
});
// Компиляция стилей
gulp.task('style', function () {
gulp.src(path.src.style)
.pipe(less())
.pipe(prefixer())
.pipe(combineMq())
.pipe(gulp.dest(path.build.css));
});
// Минификация стилей
gulp.task('stylemin', function () {
gulp.src(path.src.style)
.pipe(less())
.pipe(prefixer())
.pipe(combineMq())
.pipe(cleanCSS())
.pipe(rename("style.min.css"))
.pipe(gulp.dest(path.build.css));
});
// Сжатие картинок
gulp.task('image', function () {
gulp.src(path.src.img)
.pipe(imagemin({
progressive: true,
interlaced: true
}),
imagemin.optipng(),
imagemin.svgo())
.pipe(gulp.dest(path.build.img));
});
// Компиляция JS
gulp.task('js', function() {
gulp.src(path.src.js)
//.pipe(uglify())
.pipe(gulp.dest(path.build.js))
});
// Перенос шрифтов
gulp.task('fonts', function() {
gulp.src(path.src.fonts)
.pipe(gulp.dest(path.build.fonts))
});
// Сборка
gulp.task('build', [
'html',
'style',
'fonts',
'image',
'js'
]);
gulp.task('watch', function(){
watch([path.watch.html], function(event, cb) {
gulp.start('html');
});
watch([path.watch.style], function(event, cb) {
gulp.start('style');
});
watch([path.watch.img], function(event, cb) {
gulp.start('image');
});
watch([path.watch.fonts], function(event, cb) {
gulp.start('fonts');
});
watch([path.watch.js], function(event, cb) {
gulp.start('js');
});
});
gulp.task('default', ['build', 'watch']);