-
Notifications
You must be signed in to change notification settings - Fork 67
/
gulpfile.js
80 lines (72 loc) · 1.71 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
var gulp = require("gulp");
var del = require("del");
var template = require("gulp-template");
var minifyCss = require("gulp-minify-css");
var rename = require("gulp-rename");
var uglify = require("gulp-uglify");
var jshint = require("gulp-jshint");
var mochaPhantomJS = require("gulp-mocha-phantomjs");
var pkg = require("./package.json");
gulp.task("clean", function() {
return del(["dist/*"]);
});
gulp.task(
"build-css",
gulp.series([
"clean",
function() {
return gulp
.src("bootstrap-toc.css")
.pipe(template(pkg))
.pipe(gulp.dest("dist"))
.pipe(minifyCss({ compatibility: "ie8" }))
.pipe(
rename({
extname: ".min.css"
})
)
.pipe(gulp.dest("dist"));
}
])
);
gulp.task(
"build-js",
gulp.series([
"clean",
function() {
return gulp
.src("bootstrap-toc.js")
.pipe(template(pkg))
.pipe(gulp.dest("dist"))
.pipe(
uglify({
output: {
comments: /^!/
}
})
)
.pipe(
rename({
extname: ".min.js"
})
)
.pipe(gulp.dest("dist"));
}
])
);
gulp.task("js-lint", function() {
return gulp
.src("bootstrap-toc.js")
.pipe(jshint())
.pipe(jshint.reporter("default"))
.pipe(jshint.reporter("fail"));
});
gulp.task("test", function() {
return gulp.src("test/index.html").pipe(mochaPhantomJS());
});
gulp.task("watch", function() {
gulp.watch("bootstrap-toc.js", ["js-lint", "test"]);
gulp.watch("test/*", ["test"]);
});
gulp.task("build", gulp.parallel(["build-css", "build-js"]));
gulp.task("default", gulp.parallel(["build", "js-lint", "test"]));