-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
183 lines (157 loc) · 3.44 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
const { src, dest, watch, series, parallel } = require("gulp");
const plumber = require("gulp-plumber");
const sourcemap = require("gulp-sourcemaps");
const sass = require("gulp-sass");
const postcss = require("gulp-postcss");
const autoprefixer = require("autoprefixer");
const csso = require("postcss-csso");
const rename = require("gulp-rename");
const htmlmin = require("gulp-htmlmin");
const terser = require("gulp-terser");
const imagemin = require("gulp-imagemin");
const webp = require("gulp-webp");
const svgsprite = require("gulp-svg-sprite");
const del = require("del");
const sync = require("browser-sync").create();
const concat = require('gulp-concat');
// Styles
const styles = () => {
return src("source/scss/style.scss")
.pipe(plumber())
.pipe(sourcemap.init())
.pipe(sass())
.pipe(postcss([
autoprefixer(),
csso()
]))
.pipe(rename("style.min.css"))
.pipe(sourcemap.write("."))
.pipe(dest("build/css"))
.pipe(sync.stream());
}
exports.styles = styles;
// Minify HTML
const html = () => {
return src("source/*.html")
.pipe(htmlmin({
collapseWhitespace: true
}))
.pipe(dest("build"));
}
// Minify JS
const scripts = () => {
return src("source/js/*.js")
.pipe(sourcemap.init())
.pipe(concat('scripts.js'))
.pipe(terser())
.pipe(rename("script.min.js"))
.pipe(sourcemap.write("."))
.pipe(dest('build/js'))
.pipe(sync.stream())
}
exports.scripts = scripts;
const plugins = () => {
return src("source/js/plugins/*.js")
.pipe(sourcemap.init())
.pipe(concat('plugins.js'))
.pipe(terser())
.pipe(rename("plugins.min.js"))
.pipe(sourcemap.write("."))
.pipe(dest('build/js'))
.pipe(sync.stream())
}
exports.plugins = plugins;
// Optimization Image, SVG
const images = () => {
return src("source/img/**/*.{png,jpg}")
.pipe(imagemin([
imagemin.mozjpeg({
progressive: true
}),
imagemin.optipng({
optimizationLevel: 3
}),
imagemin.svgo()
]))
.pipe(dest("build/img"))
}
exports.images = images;
// Create WebP
const createWebp = () => {
return src("source/img/*.{jpg,png}")
.pipe(webp({
quality: 90
}))
.pipe(dest("build/img"))
}
exports.createWebp = createWebp;
// SVG sprite
const svgstack = () => {
return src("source/img/icons/**/*.svg")
.pipe(svgsprite({
mode: {
stack: {}
}
}))
.pipe(rename("stack.svg"))
.pipe(dest("build/img"));
}
exports.svgstack = svgstack;
// Copy to build
const copy = (done) => {
src([
"source/fonts/*.{woff2,woff}",
"source/img/favicon/favicon*.{svg,ico}",
"source/img/favicon/*.webmanifest",
"source/img/**/*.{jpg,png,svg}"
], {
base: "source"
})
.pipe(dest("build"))
done();
}
exports.copy = copy;
// Delete build
const clean = () => {
return del("build");
};
// Server
const server = (done) => {
sync.init({
server: {
baseDir: 'build'
},
cors: true,
notify: false,
ui: false,
});
done();
}
exports.server = server;
const reload = done => {
sync.reload();
done();
}
// Watcher
const watcher = () => {
watch("source/scss/**/*.scss", series(styles));
watch("source/js/*.js", series(scripts));
watch("source/*.html", series(html, reload));
}
const build = series(
clean,
copy,
parallel(
styles,
html,
scripts,
plugins,
svgstack,
createWebp
),
series(
server,
watcher
)
);
exports.build = build;