-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
111 lines (78 loc) · 2.01 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
var gulp = require("gulp"),
del = require("del"),
help = require("gulp-task-listing"),
notify = require("gulp-notify"),
plumber = require("gulp-plumber"),
concat = require("gulp-concat"),
uglify = require("gulp-uglify"),
jshint = require("gulp-jshint"),
rename = require("gulp-rename"),
merge = require("merge-stream");
/**
* Plumber error template
*/
var plumberOpts = {
"errorHandler": notify.onError({
"title": "Error",
"message": "<%=error.message %>"
})
};
/**
* Import configuration
*/
var config = require('./config.json');
/**
* Help task
*/
gulp.task('help', help);
/**
* Default task
*/
gulp.task("default", config.tasks.default);
/**
* Clean tasks
*/
gulp.task("clean", config.tasks.clean);
gulp.task("clean:js", function (next) {
del(config.scripts.files.map(function (item) {
return item.dist;
}), next);
});
/**
* Build tasks
*/
gulp.task("build", config.tasks.build);
gulp.task("build:js", function () {
return merge.apply(null, config.scripts.files.map(function (script) {
return gulp
.src(script.src)
.pipe(plumber(plumberOpts))
.pipe(concat(script.filename))
.pipe(gulp.dest(script.dist))
.pipe(rename(script.minfilename))
.pipe(uglify(config.scripts.options.uglify))
.pipe(gulp.dest(script.dist))
.pipe(notify({
"title": "Build Paparazzimg complete",
"message": script.filename
}));
}));
});
/**
* Watch tasks
*/
gulp.task("watch", config.tasks.watch);
gulp.task("watch:js", function () {
gulp.watch(config.scripts.watch, ["build:js"]);
});
/**
* Lint tasks
*/
gulp.task("lint:js", function () {
return merge.apply(null, config.scripts.files.map(function (script) {
return gulp
.src(script.src)
.pipe(jshint(config.scripts.options.jshint || {}))
.pipe(plumber(plumberOpts));
}));
});