-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
189 lines (169 loc) · 4.54 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
import gulp from "gulp";
import { deleteAsync } from "del";
import webp from "gulp-webp";
import webphtml from "gulp-webp-html-nosvg";
import plumber from "gulp-plumber";
import notify from "gulp-notify";
import gcmq from "gulp-group-css-media-queries";
import autoprefixer from "gulp-autoprefixer";
import cleanCSS from "gulp-clean-css";
import gulpSass from "gulp-sass";
import sass from "sass";
import concat from "gulp-concat";
import browserSync from "browser-sync";
import webpack from "webpack-stream";
import Dotenv from "dotenv-webpack";
import newer from "gulp-newer";
import imagemin from "gulp-imagemin";
import sprite from "gulp-svg-sprite";
import gulpif from "gulp-if";
import gulpPages from "gulp-gh-pages";
import path from "./gulp.config.js";
const scss = gulpSass(sass);
const port = 3000;
const isBuild = process.env.NODE_ENV === "production";
const html = () =>
gulp
.src(path.src.html)
.pipe(
plumber({
errorHandler: notify.onError({
title: "HTML",
message: "Error: <%= error.message %>",
}),
})
)
.pipe(gulpif(isBuild, webphtml()))
.pipe(gulp.dest(path.build.html));
const style = () =>
gulp
.src(path.src.scss, { sourcemaps: !isBuild })
.pipe(
plumber({
errorHandler: notify.onError({
title: "SCSS",
message: "Error: <%= error.message %>",
}),
})
)
.pipe(scss())
.pipe(gulpif(isBuild, gcmq()))
.pipe(
gulpif(
isBuild,
autoprefixer({
overrideBrowserslist: ["last 10 version"],
grid: "autoplace",
})
)
)
.pipe(concat("style.css"))
.pipe(gulp.dest(path.build.css))
.pipe(gulpif(isBuild, cleanCSS({ compatibility: "ie8" })))
.pipe(concat("style.css"))
.pipe(gulp.dest(path.build.css));
const js = () =>
gulp
.src(path.src.js, { sourcemaps: !isBuild })
.pipe(
plumber({
errorHandler: notify.onError({
title: "JS",
message: "Error: <%= error.message %>",
}),
})
)
.pipe(
webpack({
plugins: [new Dotenv()],
mode: isBuild ? "production" : "development",
output: {
filename: "script.js",
},
})
)
.pipe(gulp.dest(path.build.js));
const images = () =>
gulp
.src(path.src.images)
.pipe(
plumber({
errorHandler: notify.onError({
title: "Images",
message: "Error: <%= error.message %>",
}),
})
)
.pipe(newer(path.build.images))
.pipe(gulpif(isBuild, webp()))
.pipe(gulpif(isBuild, gulp.dest(path.build.images)))
.pipe(gulpif(isBuild, gulp.src(path.src.images)))
.pipe(gulpif(isBuild, newer(path.build.images)))
.pipe(
gulpif(
isBuild,
imagemin({
progressive: true,
svgoPlugins: [
{
removeViewbox: false,
},
],
interplaced: true,
opimizationLevel: 3,
})
)
)
.pipe(gulp.dest(path.build.images))
.pipe(gulp.src(path.src.svgImages))
.pipe(gulp.dest(path.build.images));
const svgSprite = () => {
const config = {
mode: {
symbol: true,
},
};
return gulp
.src(path.src.svg)
.pipe(
plumber({
errorHandler: notify.onError({
title: "SVG Sprite",
message: "Error: <%= error.message %>",
}),
})
)
.pipe(gulp.dest(`${path.build.svg}/svg`))
.pipe(gulp.src(path.src.svg))
.pipe(sprite(config))
.pipe(concat("sprite.svg"))
.pipe(gulp.dest(path.build.svg));
};
const createGHPages = () => {
return gulp
.src(`${path.buildFolder}/**/*`, { allowEmpty: true })
.pipe(gulpPages());
};
const reset = () => deleteAsync(path.clear);
const watcher = () => {
browserSync.init({
server: {
baseDir: path.buildFolder,
index: "/index.html",
},
port,
});
gulp.watch(path.watch.html, html).on("change", browserSync.reload);
gulp.watch(path.watch.scss, style).on("change", browserSync.reload);
gulp.watch(path.watch.js, js).on("change", browserSync.reload);
gulp.watch(path.watch.images, images).on("change", browserSync.reload);
gulp.watch(path.watch.svg, svgSprite).on("change", browserSync.reload);
};
const mainTask = gulp.parallel(html, style, js, images);
const dev = gulp.series(reset, svgSprite, mainTask, watcher);
const build = gulp.series(reset, svgSprite, mainTask);
const deploy = gulp.series(build, createGHPages);
gulp.task("dev", dev);
gulp.task("build", build);
gulp.task("deploy", deploy);
gulp.task(svgSprite);