forked from htmlacademy-adaptive/2257959-sedona-28
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
181 lines (162 loc) · 3.4 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
import gulp from 'gulp';
import plumber from 'gulp-plumber';
import less from 'gulp-less';
import postcss from 'gulp-postcss';
import csso from 'postcss-csso';
import autoprefixer from 'autoprefixer';
import browsersync from 'browser-sync';
import rename from 'gulp-rename';
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';
const browser = browsersync.create();
// CSS
export const css = () => {
return gulp.src('source/less/styles.less', { sourcemaps: true })
.pipe(plumber())
.pipe(less())
.pipe(postcss([
autoprefixer(),
csso(),
]))
.pipe(rename(function (path) {
path.extname = '.min.css';
}))
.pipe(gulp.dest('build/css', { sourcemaps: '.' }))
.pipe(browser.stream());
}
// HTML
const html = () => {
return gulp.src('source/*.html')
.pipe(htmlmin({
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
useShortDoctype: true,
}))
.pipe(gulp.dest('build'));
}
// Javascript
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/**/*.{png,jpg}')
.pipe(squoosh())
.pipe(gulp.dest('build/img'));
}
const copyImages = () => {
return gulp.src('source/img/**/*.{png,jpg}')
.pipe(gulp.dest('build/img'));
}
// WebP
const createWebp = () => {
return gulp.src([
'source/img/**/*.{png,jpg}',
'!source/img/favicons/*.{png,jpg}',
])
.pipe(squoosh({
webp: {
quality: 90,
}
}))
.pipe(gulp.dest('build/img'));
}
// SVG
const svg = () =>
gulp.src([
'source/img/**/*.svg',
'!source/img/icons/*.svg',
'!source/img/backgrounds/*.svg'
])
.pipe(svgo())
.pipe(gulp.dest('build/img'));
const stack = () => {
return gulp.src([
'source/img/icons/*.svg',
'source/img/backgrounds/*.svg'
])
.pipe(svgo())
.pipe(stacksvg({ output: `stack` }))
.pipe(gulp.dest('build/img'));
}
// Copy resourses
const copy = (done) => {
gulp.src([
'source/fonts/*.{woff2,woff}',
'source/*.ico',
'source/manifest.webmanifest',
], {
base: 'source',
})
.pipe(gulp.dest('build'))
done();
}
// Clean
const clean = () => deleteAsync(['build']);
// Server
export 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/less/**/*.less', gulp.series(css));
gulp.watch('source/js/*.js', gulp.series(scripts, reload));
gulp.watch('source/*.html', gulp.series(html, reload));
}
// Build
export const build = gulp.series(
clean,
gulp.parallel(
optimizeImages,
createWebp,
copy,
css,
html,
scripts,
svg,
stack,
),
);
// Default
export default gulp.series(
clean,
gulp.parallel(
copyImages,
createWebp,
copy,
css,
html,
scripts,
svg,
stack,
),
gulp.series(
server,
watcher
));