-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
410 lines (355 loc) · 13.3 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
var gulp = require('gulp'),
gutil = require('gulp-util'),
gulpif = require('gulp-if'), //Для if-логики в gulp
// fs = require('fs'), //Встроенная библиотека для проверки файлов на существование
taskListing = require('gulp-task-listing'), //Вывод списка тасков
//css и js
sass = require('gulp-sass'), //Sass -> css
autoprefixer = require('gulp-autoprefixer'), //Префиксы -webkit- -moz- ...
concat = require('gulp-concat'), //Объединяет файлы
gcmq = require('gulp-group-css-media-queries'), //Переносит медиа-запросы в конец файла
penthouse = require('penthouse'), //Ищет критический css
// uncss = require('gulp-uncss'), //Удаляет неиспользуемый css
csso = require('gulp-csso'), //Сжимает css
cssmin = require('gulp-cssmin'),
uglify = require('gulp-uglify'), //Сжимает js
//fonts
run = require('gulp-run'), //Командная строка
cssfont64 = require('gulp-cssfont64'), //Переводит шрифт в base64
//Файлы
file = require('gulp-file'), //Создание файлов
del = require('del'), //Удаляет
changed = require('gulp-changed'), //Только измененные файлы
ftp = require('vinyl-ftp'), //FTP
zip = require('gulp-vinyl-zip'), //Zip-архивы
replace = require('gulp-replace'), //Поиск и замена
removehtml = require('gulp-remove-html'), //Удаляет код из html
htmlmin = require('gulp-html-minifier'), //Сжимает html
fileinclude = require('gulp-file-include'), //Вставляет файл в файл
// rename = require("gulp-rename"), //Переименовывает
//images
// tinypng = require('gulp-tinypng'), //Сжимает img
favicon = require('gulp-favicons'), //Favicon
//Обработка ошибок
// print = require('gulp-print'), //Вывод на экран файлов в потоке
notify = require('gulp-notify'), //Обработка ошибок
combiner = require('stream-combiner2').obj; //Объединение .pipe
// SETTING ////////////////////////////////////////////////////////
gulp.task('default', ['watch']); //Default
gulp.task('help', taskListing); //Help
var conn = ftp.create({ //Конфигурация FTP
host: '',
user: '',
password: '',
parallel: 5,
log: gutil.log
}),
domen = 'https://ДОМЕН.ru', //Домен
build = false, //Билд на боевой (включает критичный css, css через js и т.д.)
patch = '/l-host/public_html', //Папка на сервере
pagulp = '/l-host/gulp', //Папка проекта на сервере
hosthtml = '/templates', //Папка html на сервере
hostcss = '/css', //Папка css на сервере
hostjs = '/js', //Папка js на сервере
hostfont = '/fonts', //Папка fonts на сервере
hostimg = '/images', //Папка img на сервере
libs = [ //Библиотеки, которые нужны в libs
'base/youtube',
'base/textmask',
'base/photoswipe',
//'base/owl-carousel',
'base/flickity',
];
// LIBS ////////////////////////////////////////////////////////////
var libs_css = libs.map(function(e) {return e + '/*.{sass,css}'}),
libs_js = libs.map(function(e) {return e + '/*.js'}),
libs_style = libs.map(function(e) {return 'src/libs/'+ e + '/style__lib.sass'});
gulp.task('l-css', function(){ //Сборка библиотек css
return combiner(
gulp.src(libs_css.concat([
'!**/style__lib.sass', //Не включать стили для style.css
'libs.sass' //Для кастомизации libs.min.css
]), {cwd: 'src/libs'}),
sass(),
concat('libs.min.css'),
/*uncss({html: [
domen,
domen+'/about/',
]}),*/
autoprefixer(['last 2 versions']),
gcmq(),
csso(),
cssmin({keepSpecialComments : 0}),
gulp.dest('dist'+hostcss),
conn.dest(patch+hostcss)
).on('error', notify.onError());
});
gulp.task('l-js', function(){ //Сборка библиотек js
return combiner(
gulp.src(libs_js, {cwd: 'src/libs'}),
concat('libs.min.js'),
uglify(),
gulp.dest('dist'+hostjs),
conn.dest(patch+hostjs)
).on('error', notify.onError());
});
gulp.task('libs', ['l-css','l-js','watch'], function(){ //Сборка библиотек js
return combiner(
gulp.src('src/libs/base/**/*.{jpg,png,svg,gif}'),
gulp.dest('dist'+hostimg),
conn.dest(patch+hostimg)
).on('error', notify.onError());
});
// JS /////////////////////////////////////////////////////////////
gulp.task('_form', function(){ //Генерирует сжатый файл форм
return combiner(
gulp.src(['src/js/**/*.html']),
changed('middle/js'),
htmlmin({collapseWhitespace: true, removeComments: true}),
gulp.dest('middle/js')
).on('error', notify.onError());
});
gulp.task('js', ['_form'], function(){ //Build js
return combiner(
gulp.src([
'src/js/script.js',
'src/js/before.js'
]),
fileinclude({
prefix: '@@',
basepath: 'src'
}),
gulpif(build,
uglify({mangle: {reserved: [ //Имена переменных/функций, которые надо сохранить
'imgLazy',
'loadImgBack',
'pSwp',
'formAssent',
'userAuth'
]}}),
),
gulp.dest('dist'+hostjs),
conn.dest(patch+hostjs)
).on('error', notify.onError());
});
// HTML ///////////////////////////////////////////////////////////
gulp.task('html_base', function(){ //Build html base template
return combiner(
gulp.src('src/templates/template13/*.htm'),
fileinclude({
prefix: '@@@',
basepath: 'src/templates/template13'
}),
gulpif(build, removehtml({keyword: 'build'}), removehtml()),
fileinclude({
prefix: '@@',
basepath: 'src'
}),
gulp.dest('dist'+hosthtml+'/template13'),
conn.dest(patch+hosthtml+'/template13')
).on('error', notify.onError());
});
gulp.task('html', function(){ //Build html
return combiner(
gulp.src(['src/templates/**/*.htm', '!src/templates/template13/*.htm']),
changed('dist'+hosthtml),
gulp.dest('dist'+hosthtml),
conn.dest(patch+hosthtml)
).on('error', notify.onError());
});
// CSS ////////////////////////////////////////////////////////////
gulp.task('sass', function(){ //Sass -> css
return combiner(
gulp.src(['src/sass/fontello.css'].concat(libs_style,[
'src/sass/style.sass',
])),
sass(),
concat('style.css'),
autoprefixer(['last 2 versions']),
gcmq(),
csso(),
cssmin(),
replace(/([{,;])[^{},:;]*:unset;?/g, '$1'), //Удаляет св-ва с unset
csso(),
cssmin(),
gulp.dest('middle/css'),
gulp.dest('dist'+hostcss),
conn.dest(patch+hostcss)
).on('error', notify.onError());
});
gulp.task('page404', function(){ //Sass -> css
return combiner(
gulp.src('src/sass/404.sass'),
sass(),
concat('404.css'),
autoprefixer(['last 2 versions']),
gcmq(),
csso(),
cssmin(),
gulp.dest('dist'+hostcss),
conn.dest(patch+hostcss)
).on('error', notify.onError());
});
// CRITICAL CSS ///////////////////////////////////////////////////
function penthouse_pref(filecrit, urll){ //Критический css без префиксов
if (urll === undefined) {urll='';}
var siteurl = domen+urll,
csspatch = 'middle/css/style.css',
viewidth = 1300,
vieheight = 800;
return penthouse({
url: siteurl,
css: csspatch,
blockJSRequests: false,
width: viewidth, height: vieheight
},
function (err, criticalCss) {
return file(filecrit, criticalCss, { src: true })
.pipe(csso())
.pipe(gulp.dest('dist'+hostcss+'/critical'))
.pipe(conn.dest(patch+hostcss+'/critical'));
}
);
}
gulp.task('_penthouse', function () { //Критический css
return penthouse_pref('home.css'),
penthouse_pref('all.css', '/about/');
});
gulp.task('_crit', function () { //Критический css
return run('gulp _penthouse').exec();
});
gulp.task('crit', function () { //Критический css
if (build){ gulp.start('_crit'); }
else { console.log('Для критического css вкл. константу build'); }
});
// FONT ///////////////////////////////////////////////////////////
gulp.task('_fonts64', ['fontello'],function () { //Сборка шрифтов в base64. Имя файла шрифта по маске: <Font Name>--fw<Width>.woff / 'Open Sans'--fw300.woff
var woff = combiner(
gulp.src(['src/fonts/*.woff']),
cssfont64(),
concat('fonts_woff.css'),
replace('--fw', ';font-weight:'),
replace('--italic', ';font-style:italic'),
csso(),
gulp.dest('src/fonts/')
).on('error', notify.onError());
var woff2 = combiner(
gulp.src(['src/fonts/*.woff2']),
cssfont64(),
concat('fonts_woff2.css'),
replace('--fw', ';font-weight:'),
replace('--italic', ';font-style:italic'),
csso(),
gulp.dest('src/fonts/')
).on('error', notify.onError());
return woff, woff2;
});
gulp.task('_fontssave', ['_fonts64'], function () { //Сохраненние шрифтов base64 на сервере
return combiner(
gulp.src(['src/fonts/fonts_woff.css','src/fonts/fonts_woff2.css']),
conn.dest(patch+hostfont)
).on('error', notify.onError());
});
gulp.task('font', ['_fontssave', 'watch']); //Build fonts
// FONTELLO ///////////////////////////////////////////////////////
gulp.task('_fonload', function() { //Скачивание Fontello
return run('fontello-cli install --config ./src/fonts/config.json --css ./src/fonts/fontello --font ./src/fonts/fontello').exec();
});
gulp.task('_fonmove', ['_fonload'], function() { //Перемещение Fontello
var woff = gulp.src('src/fonts/fontello/*.{woff,woff2}')
.pipe(gulp.dest('src/fonts'));
var css = gulp.src('src/fonts/fontello/fontello.css')
.pipe(replace(/^@font-face(.*|\n*)*?\}/g, ''))
.pipe(gulp.dest('src/sass'));
return woff, css;
});
gulp.task('fontello', ['_fonmove'], function () { //Fontello
return del('src/fonts/fontello');
});
// ICON ///////////////////////////////////////////////////////////
gulp.task('_favcreate', function () {
return gulp.src('src/icon.png')
.pipe(favicon({
background: '#fff',
icons: {android: false, appleStartup: false, coast: false, firefox: false, windows: false, yandex: true}
}))
.on('error', gutil.log)
.pipe(gulp.dest('middle/images/icons'));
});
gulp.task('favicon', ['_favcreate'], function () { //Favicon
return gulp.src([
'middle/images/icons/apple-touch-icon-76x76.png',
'middle/images/icons/apple-touch-icon-120x120.png',
'middle/images/icons/apple-touch-icon-152x152.png',
'middle/images/icons/apple-touch-icon-180x180.png',
'middle/images/icons/yandex-browser-50x50.png',
'middle/images/icons/favicon-16x16.png',
])
.pipe(gulp.dest('dist'+hostimg+'/icons'))
.pipe(conn.dest(patch+hostimg+'/icons'));
});
// BASESITE ///////////////////////////////////////////////////////
gulp.task('basesite', function () { //Перенос других файлов, относительно корня сайта
return combiner(
gulp.src('src/basesite/**/*'),
changed('dist'),
gulp.dest('dist'),
conn.dest(patch)
).on('error', notify.onError());
});
// WATCH //////////////////////////////////////////////////////////
gulp.task('watch', function(){ //Watch
gulp.watch([
'src/sass/**/*.sass',
'!src/sass/404.sass',
'src/libs/**/style__*.sass'
],
['sass']);
gulp.watch([
'src/libs/**/*.{sass,css}',
'!src/libs/**/style__*.sass'
],
['l-css']);
gulp.watch([
'src/templates/**/*',
'!src/templates/template13/**/*'
],
['html']);
gulp.watch('src/templates/template13/**/*', ['html_base']);
gulp.watch('src/sass/404.sass', ['page404']);
gulp.watch('src/libs/**/*.js', ['l-js']);
gulp.watch('src/js/**/*', ['js'])
gulp.watch('src/basesite/**/*', ['basesite']);
});
// FTP ////////////////////////////////////////////////////////////
gulp.task('_save', ['crit'], function () { // Сохраняет проект на FTP
return combiner(
gulp.src(['src/**/*', '.bowerrc', 'package.json', 'gulpfile.js'], { base: './' }),
zip.dest('zip/project.zip'),
conn.dest(pagulp)
).on('error', notify.onError());
});
gulp.task('save', ['_save'], function () { // Сохраняет проект на FTP
gulp.start('watch');
});
gulp.task('_savepreload', function () {
return combiner(
gulp.src(['src/**/*', '.bowerrc', 'package.json', 'gulpfile.js'], { base: './' }),
zip.dest('zip/project_backup.zip')
).on('error', notify.onError());
});
gulp.task('_preload', ['_savepreload'], function () {
return combiner(
conn.src(pagulp+'/project.zip'),
gulp.dest('zip')
).on('error', notify.onError());
});
gulp.task('_allclear', ['_preload'], function () {
return del(['src', 'dist', 'middle']);
});
gulp.task('load', ['_allclear'], function () { // Загружает проект с FTP
return combiner(
zip.src('zip/project.zip'),
gulp.dest('.')
).on('error', notify.onError());
});