-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
202 lines (186 loc) · 7.15 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
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
'use strict';
// Подключение плагинов через переменные (connection of plugins through variables):
var gulp = require('gulp'), // Gulp
autoprefixer = require('gulp-autoprefixer'), // Добавление вендорных префиксов (adding of vendor prefixers)
concat = require('gulp-concat'), // Объединение файлов (files merger)
csso = require('gulp-csso'), // Минификация CSS-файлов (minification of CSS files)
del = require('del'), // Удаление папок и файлов (delete of folders and files)
imagemin = require('gulp-imagemin'), // Оптимизация изображений (images optimization)
plumber = require('gulp-plumber'), // Обработка ошибок (error handling)
pngquant = require('imagemin-pngquant'), // Оптимизация PNG-изображений (PNG images optimization)
pug = require('gulp-pug'), // Pug
rename = require('gulp-rename'), // Переименование файлов (files rename)
stylus = require('gulp-stylus'), // Stylus
uglify = require('gulp-uglify'); // Минификация JS-файлов (minification of JS files)
// Задание путей к используемым файлам и папкам (paths to folders and files):
var paths = {
dir: {
app: './app',
dist: './dist'
},
watch: {
pug: './app/pug/**/*.pug',
styl: [
'./app/blocks/**/*.styl',
'./app/config/**/*.styl'
],
js: './app/blocks/**/*.js'
},
app: {
html: {
src: './app/pug/pages/*.pug',
dest: './app'
},
common: {
css: {
src: [
'./app/config/variables.styl',
'./app/config/mixins.styl',
'./app/blocks/**/*.styl'
],
dest: './app/assets/css'
},
js: {
src: './app/blocks/**/*.js',
dest: './app/assets/js'
}
},
vendor: {
css: {
src: [
'./app/vendor/normalize-css/normalize.css',
'./app/vendor/bootstrap/dist/css/bootstrap.min.css',
'./app/vendor/font-awesome/css/font-awesome.min.css'
],
dest: './app/assets/css'
},
js: {
src: [
'./app/vendor/jquery/dist/jquery.min.js',
'./app/vendor/bootstrap/dist/js/bootstrap.min.js'
],
dest: './app/assets/js'
},
fonts: {
src: [
'./app/vendor/font-awesome/fonts/*.*'
],
dest: './app/assets/fonts'
}
}
},
img: {
src: './app/assets/images/**/*.*',
dest: './dist/assets/images'
},
dist: {
html: {
src: './app/*.html',
dest: './dist'
},
css: {
src: './app/assets/css/*.min.css',
dest: './dist/assets/css'
},
js: {
src: './app/assets/js/*.min.js',
dest: './dist/assets/js'
},
fonts: {
src: './app/assets/fonts/*.*',
dest: './dist/assets/fonts'
}
}
}
// Подключение Browsersync (connection of Browsersync):
var browserSync = require('browser-sync').create(),
reload = browserSync.reload;
// Таск для работы Browsersync, автообновление браузера (Browsersync task, autoreload of browser):
gulp.task('serve', function() {
browserSync.init({
server: './app'
});
gulp.watch(paths.watch.pug, gulp.series('html'));
gulp.watch(paths.watch.styl, gulp.series('cssCommon'));
gulp.watch(paths.watch.js, gulp.series('jsCommon'));
gulp.watch('*.html').on('change', reload);
});
// Таск для работы Pug, преобразование Pug в HTML (Pug to HTML conversion task):
gulp.task('html', function () {
return gulp.src(paths.app.html.src)
.pipe(plumber())
.pipe(pug({pretty: true}))
.pipe(gulp.dest(paths.app.html.dest))
.pipe(browserSync.stream());
});
// Таск для преобразования Stylus-файлов в CSS (Stylus to CSS conversion):
gulp.task('cssCommon', function() {
return gulp.src(paths.app.common.css.src)
.pipe(plumber())
.pipe(concat('common.styl'))
.pipe(stylus())
.pipe(autoprefixer())
.pipe(gulp.dest(paths.app.common.css.dest))
.pipe(rename({suffix: '.min'}))
.pipe(csso())
.pipe(gulp.dest(paths.app.common.css.dest))
.pipe(browserSync.stream());
});
// Таск для объединения и минификации пользовательских JS-файлов (task for merger and minification custom JS files)
gulp.task('jsCommon', function() {
return gulp.src(paths.app.common.js.src)
.pipe(plumber())
.pipe(concat('common.js'))
.pipe(gulp.dest(paths.app.common.js.dest))
.pipe(rename({suffix: '.min'}))
.pipe(uglify())
.pipe(gulp.dest(paths.app.common.js.dest))
.pipe(browserSync.stream());
});
// Таск для объединения и минификации CSS-файлов внешних библиотек (task for merger and minification CSS files of libraries, plugins and frameworks)
gulp.task('cssVendor', function () {
return gulp.src(paths.app.vendor.css.src)
.pipe(concat('vendor.min.css'))
.pipe(csso())
.pipe(gulp.dest(paths.app.vendor.css.dest));
});
// Таск для объединения и минификации JS-файлов внешних библиотек (task for merger and minification JS files of libraries, plugins and frameworks)
gulp.task('jsVendor', function () {
return gulp.src(paths.app.vendor.js.src)
.pipe(concat('vendor.min.js'))
.pipe(uglify())
.pipe(gulp.dest(paths.app.vendor.js.dest));
});
// Таск для объединения папок fonts внешних библиотек (task for merger fonts folders of libraries, plugins and frameworks)
gulp.task('fontsVendor', function () {
return gulp.src(paths.app.vendor.fonts.src)
.pipe(gulp.dest(paths.app.vendor.fonts.dest));
});
// Таск для предварительной очистки (удаления) production-папки (task for delete of production folder dist):
gulp.task('clean', function() {
return del(paths.dir.dist);
});
// Таск для обработки изображений (images optimization task):
gulp.task('img', function() {
return gulp.src(paths.img.src)
.pipe(imagemin({use: [pngquant()]}))
.pipe(gulp.dest(paths.img.dest));
});
// Таск для формирования production-папки (task for creating of production folder dist):
gulp.task('dist', function () {
var htmlDist = gulp.src(paths.dist.html.src)
.pipe(gulp.dest(paths.dist.html.dest));
var cssDist = gulp.src(paths.dist.css.src)
.pipe(gulp.dest(paths.dist.css.dest));
var jsDist = gulp.src(paths.dist.js.src)
.pipe(gulp.dest(paths.dist.js.dest));
var fontsDist = gulp.src(paths.dist.fonts.src)
.pipe(gulp.dest(paths.dist.fonts.dest));
return htmlDist, cssDist, jsDist, fontsDist;
});
// Таск для сборки (build task):
gulp.task('build', gulp.parallel('html', 'cssCommon', 'jsCommon', 'cssVendor', 'jsVendor', 'fontsVendor'));
// Таск для разработки (development task):
gulp.task('default', gulp.series('build', 'serve'));
// Таск для production (production task):
gulp.task('public', gulp.series('clean', 'img', 'dist'));