-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
236 lines (216 loc) · 6.92 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
"use strict";
// требуем плагины
const projectFolder = "build";
const sourceFolder = "source";
const plumber = require("gulp-plumber");
const { src, dest } = require("gulp");
const gulp = require("gulp");
const browserSync = require("browser-sync").create();
const fileInclude = require("gulp-file-include");
const fileDel = require("del");
const scssPre = require("gulp-sass");
const autoPrefixer = require("gulp-autoprefixer");
const mediaQueryOprimize = require("gulp-group-css-media-queries");
const cssClean = require("gulp-clean-css");
const fileRename = require("gulp-rename");
const jsOpti = require("gulp-uglify-es").default;
const imgOpti = require("gulp-imagemin");
const webpConvert = require("gulp-webp");
const webpInsert = require("gulp-webp-in-html");
const retinaInsert = require("gulp-img-retina");
const retinaPrefixDefault = {
suffix: { 1: "", 2: "@2x" }, // префиксы, к-ые будут прописаны ретиной в html
};
const svgSpriteMake = require("gulp-svg-sprite");
const svgMin = require("gulp-imagemin");
const ttf2woff = require("gulp-ttf2woff");
const ttf2woff2 = require("gulp-ttf2woff2");
const codeMap = require("gulp-sourcemaps");
const ghPages = require("gulp-gh-pages");
const svgCheerio = require("gulp-cheerio");
const svgReplace = require("gulp-replace");
// создаем объект описывающий данные для скрипта
const path = {
build: {
html: projectFolder + "/",
css: projectFolder + "/css/",
js: projectFolder + "/js/",
img: projectFolder + "/img/",
fonts: projectFolder + "/fonts/",
},
source: {
html: [sourceFolder + "/*.html", "!" + sourceFolder + "/_*.html"], // прописываем исключение ненужных html (все они помечены _name.html)
scss: sourceFolder + "/sass/style.scss",
js: sourceFolder + "/js/script.js",
img: [
sourceFolder + "/img/**/*.{jpg,png,svg,gif,ico,webp}",
"!" + sourceFolder + "/img/**/_*.svg",
],
fonts: sourceFolder + "/fonts/*.ttf",
},
watch: {
html: sourceFolder + "/**/*.html",
scss: sourceFolder + "/sass/**/*.scss",
js: sourceFolder + "/js/**/*.js",
img: sourceFolder + "/img/**/*.{jpg,png,svg,gif,ico,webp}",
},
destroy: "./" + projectFolder + "/",
};
// вывод в браузер
function browserSyncGo(params) {
browserSync.init({
server: {
baseDir: "./" + projectFolder + "/",
},
port: 1911,
notify: false,
});
}
// функция обработки html
function htmlGo() {
return src(path.source.html)
.pipe(retinaInsert(retinaPrefixDefault))
.pipe(webpInsert()) // добавляет в html код для webp-версий изображений
.pipe(fileInclude()) // добавляет html файлы в другой html через @@include('имя файла')
.pipe(dest(path.build.html))
.pipe(browserSync.stream());
}
// функция обработки css
// вход style через include, остальные блоки отдельные файлы
function cssGo() {
return src(path.source.scss)
.pipe(plumber())
.pipe(codeMap.init())
.pipe(
scssPre({
outputStyle: "expanded",
})
)
.pipe(mediaQueryOprimize())
.pipe(
autoPrefixer({
overrideBrowserslist: ["last 5 versions"],
cascade: true,
})
)
.pipe(dest(path.build.css)) // выгрузка до оптимизации
.pipe(cssClean())
.pipe(
fileRename({
extname: ".min.css",
})
)
.pipe(codeMap.write("."))
.pipe(dest(path.build.css)) // после оптимизации, подключ. в финальный index
.pipe(browserSync.stream());
}
// обработка JS
function jsGo() {
return src(path.source.js)
.pipe(fileInclude())
.pipe(dest(path.build.js)) // выгрузка до оптимизации
.pipe(jsOpti())
.pipe(
fileRename({
extname: ".min.js",
})
)
.pipe(dest(path.build.js)) // после оптимизации, подключ. в финальный index
.pipe(browserSync.stream());
}
// функция обработки изображений: конвертация в Webp и оптимизация размера
function imgGo() {
return src(path.source.img)
.pipe(
webpConvert({
quality: 85,
})
)
.pipe(dest(path.build.img))
.pipe(src(path.source.img))
.pipe(
imgOpti({
progressive: true,
interlaced: true,
optimizationLevel: 0, // от 0 до 7
svgoPlugins: [{ removeViewBox: false }],
})
)
.pipe(dest(path.build.img))
.pipe(browserSync.stream());
}
function spriteMake() {
return src([sourceFolder + "/img/iconsprite/_*.svg"])
.pipe(
svgMin({
js2svg: {
pretty: true,
},
})
)
.pipe(
svgCheerio({
run: function ($) {
$("[fill]").removeAttr("fill");
$("[stroke]").removeAttr("stroke");
$("[style]").removeAttr("style");
},
parserOptions: { xmlMode: true },
})
)
.pipe(svgReplace(">", ">"))
.pipe(
svgSpriteMake({
mode: {
symbol: {
sprite: "../iconsprite/icons.svg",
// example: true,
},
},
})
)
.pipe(dest(path.build.img));
}
// следим за изменения в файлах
function watchFiles(params) {
gulp.watch([path.watch.html], htmlGo); // передаем путь из объекта и фукнцию которую надо применить при изменении файла
gulp.watch([path.watch.scss], cssGo);
gulp.watch([path.watch.js], jsGo);
gulp.watch([path.watch.img], imgGo);
gulp.watch([path.watch.img], spriteMake);
}
// удаляем все из папки билд
function destroyBuild(params) {
return fileDel(path.destroy);
}
gulp.task("fontsConverter", function () {
src(path.src.fonts).pipe(ttf2woff()).pipe(dest(path.build.fonts));
return pipe(src(path.src.fonts))
.pipe(ttf2woff2())
.pipe(dest(path.build.fonts));
});
gulp.task("deploy", function () {
return gulp.src("./build/**/*").pipe(ghPages());
});
function publishGitPage() {
return gulp.src("./build/**/*").pipe(ghPages());
}
// оформляем серии для gulp
let build = gulp.series(
destroyBuild,
gulp.parallel(jsGo, htmlGo, cssGo, imgGo, spriteMake)
);
let watch = gulp.parallel(build, watchFiles, browserSyncGo);
// Соберет весь проект и обупдикует в gh-pages (ветка должна быть предварительно создана)
let publish = gulp.series(build, publishGitPage);
// оформляем экспорты
exports.publish = publish;
exports.gitpage = publishGitPage;
exports.sprite = spriteMake;
exports.img = imgGo;
exports.js = jsGo;
exports.css = cssGo;
exports.html = htmlGo;
exports.build = build;
exports.watch = watch;
exports.default = watch;