-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
162 lines (147 loc) · 3.17 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
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 csso from 'postcss-csso';
import rename from 'gulp-rename';
import htmlmin from 'gulp-htmlmin';
import squoosh from 'gulp-libsquoosh';
import terser from 'gulp-terser';
import svgo from 'gulp-svgmin';
import svgstore from 'gulp-svgstore';
import browser from 'browser-sync';
import del from 'del';
// Styles
export const styles = () => {
return gulp.src('source/sass/style.scss', { sourcemaps: true })
.pipe(plumber())
.pipe(sass().on('error', sass.logError))
.pipe(postcss([
autoprefixer(),
csso()
]))
.pipe(rename('style.min.css'))
.pipe(gulp.dest('build/css', { sourcemaps: '.' }))
.pipe(browser.stream());
}
// HTML
const html = () => {
return gulp.src('source/*.html')
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('build'));
}
// Scripts
const scripts = () => {
return gulp.src('source/js/*.js')
.pipe(terser())
.pipe(rename('scripts.min.js'))
.pipe(gulp.dest('build/js'));
}
// Images
const optimizeImages = () => {
return gulp.src('source/img/**/*.{jpg,jpeg,png}')
.pipe(squoosh())
.pipe(gulp.dest('build/img'));
}
const copyImages = () => {
return gulp.src('source/img/**/*.{jpg,jpeg,png}')
.pipe(gulp.dest('build/img'));
}
// Webp
const createWebp = () => {
return gulp.src('source/img/**/*.{jpg,jpeg,png}')
.pipe(squoosh({
webp: {}
}))
.pipe(gulp.dest('build/img'));
}
// SVG
const svg = () => {
return gulp.src(['source/img/svg/*.svg', '!source/img/favicons/*.svg', '!source/img/svg/icons/*.svg'])
.pipe(svgo())
.pipe(gulp.dest('build/img/svg'));
}
const sprite = () => {
return gulp.src('source/img/svg/icons/*.svg')
.pipe(svgo())
.pipe(svgstore({
inlineSvg: true
}))
.pipe(rename('sprite.svg'))
.pipe(gulp.dest('build/img'));
}
// Favicons
const svgFavicon = () => {
return gulp.src('source/img/favicons/*.svg')
.pipe(svgo())
.pipe(gulp.dest('build/img/favicons'));
}
// Fonts
const copy = (done) => {
return gulp.src(
['source/fonts/*.{woff2, woff}', 'source/*.ico', 'source/*.webmanifest'], {
base: 'source'
})
.pipe(gulp.dest('build'))
done();
}
// Clean
const clean = () => {
return del('build');
}
// Server
const server = (done) => {
browser.init({
server: {
baseDir: 'build'
},
cors: true,
notify: false,
ui: false,
});
done();
}
const reload = (done) => {
browser.reload();
done();
}
// Watcher
const watcher = () => {
gulp.watch('source/sass/**/*.scss', gulp.series(styles));
gulp.watch('source/js/scripts.js', gulp.series(scripts));
gulp.watch('source/*.html', gulp.series(html, reload));
}
// Build
export const build = gulp.series(
clean,
copy,
optimizeImages,
gulp.parallel(
html,
styles,
scripts,
svg,
svgFavicon,
sprite,
createWebp
),
);
// Default
export default gulp.series(
clean,
copy,
copyImages,
gulp.parallel(
html,
styles,
scripts,
svg,
svgFavicon,
sprite,
createWebp
),
gulp.series(
server,
watcher
));