-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
112 lines (100 loc) · 2.66 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
"use strict";
var gulp = require("gulp");
var less = require("gulp-less");
var plumber = require("gulp-plumber");
var postcss = require("gulp-postcss");
var autoprefixer = require("autoprefixer");
var server = require("browser-sync").create();
var svgstore = require("gulp-svgstore");
var svgmin = require("gulp-svgmin");
var path = require("path");
var mqpacker = require("css-mqpacker");
var del = require("del");
var imagemin = require("gulp-imagemin");
var csso = require("gulp-csso");
var rename = require("gulp-rename");
var run = require("run-sequence");
gulp.task("serve", ["style"], function() {
server.init({
server: "build/",
notify: false,
open: true,
cors: true,
ui: false
});
gulp.watch("less/**/*.less", ["style"]);
gulp.watch("*.html").on("change", server.reload);
gulp.watch("*.html", ["html:update"]);
});
gulp.task("clean", function() {
return del("build");
});
gulp.task("copy", function() {
return gulp.src([
"fonts/**/*.{woff,woff2}",
"img/**",
"js/**",
"*.html"
], {
base: "."
})
.pipe(gulp.dest("build"));
});
gulp.task("style", function() {
gulp.src("less/style.less")
.pipe(plumber())
.pipe(less())
.pipe(postcss([
autoprefixer({
browsers: [
"last 2 versions"
]
}),
mqpacker({
sort: false
})
]))
.pipe(gulp.dest("build/css"))
.pipe(csso())
.pipe(rename("style.min.css"))
.pipe(gulp.dest("build/css"));
});
gulp.task("images", function() {
return gulp.src("build/img/**/*.{png,jpg,gif}")
.pipe(imagemin([
imagemin.optipng({ optimizationLevel: 3 }),
imagemin.jpegtran({ progressive: true })
]))
.pipe(gulp.dest("build/img"));
});
gulp.task("svgstore", function() {
return gulp
.src("build/img/*.svg")
.pipe(svgmin(function(file) {
var prefix = path.basename(file.relative, path.extname(file.relative));
return {
plugins: [{
cleanupIDs: {
prefix: prefix + "-",
minify: true
}
}]
}
}))
.pipe(svgstore())
.pipe(gulp.dest("build/img/"));
});
gulp.task("build", function(fn) {
run(
"clean",
"copy",
"style",
"images",
"svgstore",
fn
);
});
gulp.task("html:copy", function() {
return gulp.src("*.html")
.pipe(gulp.dest("build"));
});