-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
171 lines (152 loc) · 3.18 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
import gulp from 'gulp';
import plumber from 'gulp-plumber';
import sass from 'gulp-dart-sass';
import postcss from 'gulp-postcss';
import csso from 'postcss-csso';
import rename from 'gulp-rename';
import autoprefixer from 'autoprefixer';
import browser from 'browser-sync';
import htmlmin from 'gulp-htmlmin';
import terser from 'gulp-terser';
import squoosh from 'gulp-libsquoosh';
import svgo from 'gulp-svgmin';
import { stacksvg } from 'gulp-stacksvg';
import { deleteAsync } from 'del';
import sourcemaps from 'gulp-sourcemaps';
// 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(sourcemaps.init())
.pipe(terser())
.pipe(rename(function (path) {
path.extname = ".min.js";
}))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest('build/js'))
}
//Images
const optimizeImages = () => {
return gulp.src('source/img/**/*.{jpg,png}')
.pipe(squoosh())
.pipe(gulp.dest('build/img'))
}
const copyImages = () => {
return gulp.src('source/img/**/*.{jpg,png}')
.pipe(gulp.dest('build/img'))
}
//WebP
const createWebP = () => {
return gulp.src([
'source/img/**/*.{png,jpg}',
'source/img/*.{png,jpg}',
'!source/img/favicons/*.{png,jpg}',
])
.pipe(squoosh({
webp: {
quality: 80,
}
}))
.pipe(gulp.dest('build/img'))
}
//SVG
const svg = () => {
return gulp.src('source/img/**/*.svg')
.pipe(svgo())
.pipe(gulp.dest('build/img'))
}
const stack = () => {
return gulp.src('./source/img/icons/**/*.svg')
.pipe(svgo())
.pipe(stacksvg({
output: 'stack.svg'
}))
.pipe(gulp.dest('./build/img/'));
}
//Copy
const copy = (done) => {
return gulp.src([
'source/fonts/*.{woff2,woff}',
'source/*.ico',
'source/manifest.webmanifest',
], {
base: 'source'
})
.pipe(gulp.dest('build'))
done();
}
//Clean
const clean = () => {
return deleteAsync('build');
};
// Server
const server = (done) => {
browser.init({
server: {
baseDir: 'build'
},
cors: true,
notify: false,
ui: false,
});
done();
}
//Reload
const reload = (done) => {
browser.reload();
done();
}
// Watcher
const watcher = () => {
gulp.watch('source/sass/**/*.scss', gulp.series(styles));
gulp.watch('source/js/*.js', gulp.series(scripts));
gulp.watch('source/*.html', gulp.series(html, reload));
}
//Build
export const build = gulp.series(
clean,
copy,
optimizeImages,
gulp.parallel(
styles,
html,
scripts,
svg,
stack,
createWebP
),
);
export default gulp.series(
clean,
copy,
copyImages,
gulp.parallel(
styles,
html,
scripts,
svg,
stack,
createWebP
),
gulp.series(
server,
watcher
));