-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
214 lines (172 loc) · 4.68 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
import gulp from 'gulp';
import plumber from 'gulp-plumber';
import sass from 'gulp-dart-sass';
import postcss from 'gulp-postcss';
import autoprefixer from 'autoprefixer';
import browser from 'browser-sync';
import htmlmin from 'gulp-htmlmin';
import cssmin from 'postcss-csso';
import rename from 'gulp-rename';
import terser from 'gulp-terser';
import squoosh from 'gulp-libsquoosh';
import webp from 'gulp-webp';
import linthtml from '@linthtml/gulp-linthtml';
// import strip from 'gulp-strip-comments';
// import svgstore from 'gulp-svgstore';
// import * as del from 'del';
// import { deleteSync } from 'del';
import { deleteAsync } from 'del';
// Server
const server = (done) => {
browser.init({
server: {
baseDir: 'build'
},
cors: true,
notify: false,
ui: false,
});
done();
};
// SASS to CSS
export const styles = () => {
return gulp.src('source/sass/style.scss', { sourcemaps: true })
.pipe(plumber())
.pipe(sass().on('error', sass.logError))
.pipe(postcss([
autoprefixer(),
cssmin()
]))
.pipe(rename('style.min.css'))
.pipe(gulp.dest('build/css', { sourcemaps: '.' }))
.pipe(gulp.dest('source/css', { sourcemaps: '.' }));
// .pipe(browser.stream());
};
// Minify *.html
export const minhtml = () => {
return gulp.src('source/*.html')
.pipe(htmlmin({ collapseWhitespace: true, removeComments: true }))
.pipe(gulp.dest('build'));
};
// lintHTML
export const lintHTML = () => {
return gulp.src('source/*.html')
.pipe(linthtml('./linthtmlrc.json'))
.pipe(linthtml.format())
.pipe(linthtml.failOnError());
}
lintHTML.description = "Analyse all HTML files using linthtml";
// Minify scripts
export const minjs = () => {
// выбираем все не минифицированные файлы для минификации
return gulp.src('source/js/!(*.min).js')
.pipe(terser())
// Пакетное переименование
// вызываем метод rename и передаем ему функцию обратного вызова
.pipe(rename(function (path) {
// добавляем суффикс "-min" к базовому имени файла
//? path.basename += '-min';
// меняем расширение файла на .min.js
path.extname = '.min.js';
}
))
.pipe(gulp.dest('build/js'))
.pipe(gulp.dest('source/js'));
};
// Optimize images
export const optimizeImages = () => {
return gulp.src('source/img/**/*.{png,jpg,svg}')
.pipe(squoosh())
.pipe(gulp.dest('build/img'));
};
// Copy images to /build
export const copyImages = () => {
return gulp.src('source/img/**/*.{png,jpg,svg}')
.pipe(gulp.dest('build/img'));
};
// Convert images to Webp
export const createWebp = () => {
return gulp.src('source/img/**/*.{jpg,png}')
.pipe(webp({ quality: 90 }))
.pipe(gulp.dest('build/img'));
};
// Make sprite file
export const makeSprite = () => {
return gulp.src('source/img/icons/*.svg')
.pipe(svgstore({
inlineSvg: true
}))
.pipe(rename('allsprite.svg'))
.pipe(gulp.dest('build/img'));
}
// Minify sprite.svg
// export const minsprite = () => {
// return gulp.src('source/img/**/sprite.svg')
// .pipe(htmlmin({ collapseWhitespace: true, removeComments: true }))
// .pipe(gulp.dest('build/img'));
// };
// Copy files to /build
export const copy = (done) => {
gulp.src([
"source/fonts/*.{woff2, woff}",
"source/*.ico",
"source/img/**/*.svg"
// "!source/img/icons/*.svg"
], { base: "source" })
.pipe(gulp.dest('build'));
done();
};
// Clean build
export const clean = () => {
return deleteAsync(['build']);
};
// Watcher styles with reload browser
const watcher = () => {
gulp.watch('source/sass/**/*.scss', gulp.series(styles));
gulp.watch('build/*.html').on('change', browser.reload);
};
// Watcher scripts and styles for DevMode
const watcherDev = () => {
gulp.watch('source/sass/**/*.scss', gulp.series(styles));
gulp.watch('source/js/**/!(*.min).js', gulp.series(minjs));
};
// My Develop Mode
export const dev = gulp.series(
styles,
minjs,
watcherDev);
// Build project
export const build = gulp.series(
clean,
copy,
//Костыль - минифицирую спрайт, в данном проекте.
// Чтобы не собирать уже собранный руками
// minsprite,
optimizeImages,
gulp.parallel(
styles,
minhtml,
minjs,
createWebp
// makeSpite,
),
gulp.series(
server,
watcher
)
);
// Default Mode
export default gulp.series(
clean,
copy,
copyImages,
gulp.parallel(
styles,
minhtml,
minjs,
createWebp
),
gulp.series(
server,
watcher
));