-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
182 lines (158 loc) · 4.99 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
//'use strict';
var gulp = require('gulp'),
sass = require('gulp-sass'),
plumber = require('gulp-plumber'),//отлавливает ошибки, не дает упасть серверу
browserSync = require('browser-sync').create(),
postcss = require('gulp-postcss'),//нужен для работы автопрефиксера
autoprefixer = require('autoprefixer'),//работает под postcss
mqpacker = require('css-mqpacker'),//перераспределятор медиавыражений, работает под postcss
csso = require('gulp-csso'),//минификатор CSS
rename = require('gulp-rename'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
notify = require('gulp-notify'),
svgstore = require('gulp-svgstore'),//собиральщик спрайта
svgmin = require('gulp-svgmin'),//минификатор SVG
imagemin = require('gulp-imagemin'),
pngquant = require('imagemin-pngquant'),
cheerio = require('gulp-cheerio'),
run = require('run-sequence'),//запуск тасков последовательно
// ghPages = require('gulp-gh-pages'),
del = require('del');
// Сборка стилей
gulp.task('style', function() {
gulp.src('app/sass/main.scss')
.pipe(plumber())
.pipe(sass({outputStyle: 'expand'})).on('error', notify.onError())
.pipe(postcss([
autoprefixer({browsers: [
'last 10 versions'
]}),
mqpacker({
sort: false //true сортирует медиастили по порядку
})
]))
.pipe(gulp.dest('app/css'))//несжатый CSS
.pipe(csso())//сжимает CSS
.pipe(rename('style.min.css'))
.pipe(gulp.dest('app/css'))//сжатый CSS
.pipe(browserSync.reload({stream: true}));
});
// Сборка скриптов
gulp.task('common-js', function() {
return gulp.src([
'app/js/common.js',
])
.pipe(plumber())
.pipe(concat('common.min.js'))
.pipe(uglify().on('error', notify.onError()))
.pipe(gulp.dest('app/js'));
});
gulp.task('js', ['common-js'], function() {
return gulp.src([
'app/libs/jquery/dist/jquery.min.js', // сюда добавляем библиотеки
'app/libs/autoResizeTextarea/autoResizeTextarea.min.js',
'app/libs/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js',
//'app/js/common.min.js', // Всегда в конце, раскоментить, если хотим склеить весь js, удалить подключение common.js в index.html
])
.pipe(plumber())
.pipe(concat('scripts.min.js'))
.pipe(uglify()) // Минимизировать весь js (на выбор)
.pipe(gulp.dest('app/js'))
.pipe(browserSync.reload({stream: true}));
});
// Оптимизация изображений
gulp.task('img', function () {
return gulp.src('app/img/**/*')
.pipe(plumber())
.pipe(imagemin({
optimizationLevel: 3,
progressive: true,
svgoPlugins: [{removeViewBox: false}],
use: [pngquant()]
}))
.pipe(gulp.dest('build/img'));
});
// Сборка SVG-спрайта
gulp.task('svgstore', function (callback) {
var spritePath = 'app/img/svg-sprite';
if(fileExist(spritePath) !== false) {
return gulp.src(spritePath + '/*.svg')
.pipe(svgmin(function (file) {
return {
plugins: [{
cleanupIDs: {
minify: true
}
}]
};
}))
.pipe(svgstore({ inlineSvg: true }))
.pipe(cheerio(function ($) {
$('svg').attr('style', 'display:none');
}))
.pipe(rename('sprite-svg.svg'))
.pipe(gulp.dest('build/img/'));
}
else {
console.log('Нет файлов для сборки SVG-спрайта');
callback();
}
});
// Копирование шрифтов, скриптов, SVG-спрайтов и html
gulp.task('copy', function() {
return gulp.src([
'app/fonts/**/*.*',
'app/js/scripts.min.js',
'app/js/common.js',
'app/css/style.min.css',
'app/*.html'
], {
base: 'app'
})
.pipe(gulp.dest('build'));
});
// Очистка папки build
gulp.task('clean', function() {
return del('build');
});
// Сборка проекта в папку build
gulp.task('build', function(fn) {
run(
'clean',
'style',
'img',
'svgstore',
'copy',
fn
);
});
// Слежение за изменениями, локальный сервер
gulp.task('serve', ['style'], function() {
browserSync.init({
server: 'app',
notify: false,
open: true,
tunnel: false,
cors: true,
ui: false
});
gulp.watch('app/sass/**/*.{scss,sass}', ['style']);
gulp.watch(['libs/**/*.js', 'app/js/common.js'], ['js']);
gulp.watch('app/*.html', browserSync.reload);
});
// Задача по умолчанию
gulp.task('default', ['serve']);
// Проверка существования файла/папки
function fileExist(path) {
var fs = require('fs');
try {
fs.statSync(path);
} catch(err) {
return !(err && err.code === 'ENOENT');
}
}
// gulp.task('deploy', function() {
// return gulp.src('./build/**/*')
// .pipe(ghPages());
// });