-
Notifications
You must be signed in to change notification settings - Fork 70
/
gulpfile.babel.js
167 lines (151 loc) · 3.6 KB
/
gulpfile.babel.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
// generated on 2017-03-02 using generator-chrome-extension 0.6.1
import gulp from "gulp";
import gulpLoadPlugins from "gulp-load-plugins";
import del from "del";
import runSequence from "run-sequence";
import { stream as wiredep } from "wiredep";
const $ = gulpLoadPlugins();
export function extras() {
return gulp
.src(
[
"app/*.*",
"app/_locales/**",
"!app/scripts.babel",
"!app/*.json",
"!app/*.html",
],
{
base: "app",
dot: true,
}
)
.pipe(gulp.dest("dist"));
}
export function lint() {
const files = "app/scripts.babel/**/*.js";
const options = {
parser: "babel-eslint",
env: {
es6: true,
},
};
return gulp.src(files).pipe($.eslint(options)).pipe($.eslint.format());
}
export function images() {
return gulp
.src("app/images/**/*")
.pipe(
$.if(
$.if.isFile,
$.cache(
$.imagemin({
progressive: true,
interlaced: true,
// don't remove IDs from SVGs, they are often used
// as hooks for embedding and styling
svgoPlugins: [{ cleanupIDs: false }],
})
).on("error", function (err) {
console.log(err);
this.end();
})
)
)
.pipe(gulp.dest("dist/images"));
}
export function html() {
return (
gulp
.src("app/*.html")
.pipe($.useref({ searchPath: [".tmp", "app", "."] }))
.pipe($.sourcemaps.init())
// .pipe($.if('*.js', $.uglify()))
.pipe($.if("*.css", $.cleanCss({ compatibility: "*" })))
.pipe($.sourcemaps.write())
.pipe(
$.if(
"*.html",
$.htmlmin({ removeComments: true, collapseWhitespace: true })
)
)
.pipe(gulp.dest("dist"))
);
}
export function chromeManifest() {
return (
gulp
.src("app/manifest.json")
.pipe(
$.chromeManifest({
buildnumber: true,
background: {
target: "scripts/background.js",
exclude: ["scripts/chromereload.js"],
},
})
)
.pipe($.if("*.css", $.cleanCss({ compatibility: "*" })))
.pipe($.if("*.js", $.sourcemaps.init()))
// .pipe($.if('*.js', $.uglify()))
.pipe($.if("*.js", $.sourcemaps.write(".")))
.pipe(gulp.dest("dist"))
);
}
export function babel() {
return gulp
.src("app/scripts.babel/**/*.js")
.pipe(
$.babel({
presets: ["es2015"],
})
)
.pipe(gulp.dest("app/scripts"));
}
export function clean() {
return del([".tmp", "dist"]);
}
export const watch = gulp.series(lint, babel, () => {
$.livereload.listen();
gulp.watch(
[
"app/*.html",
"app/scripts/**/*.js",
"app/images/**/*",
"app/styles/**/*",
"app/_locales/**/*.json",
],
$.livereload.reload
);
gulp.watch("app/scripts.babel/**/*.js", gulp.series((lint, babel)));
gulp.watch("bower.json", gulp.series(wireBowerDep));
});
export function size() {
return gulp.src("dist/**/*").pipe($.size({ title: "build", gzip: true }));
}
export function wireBowerDep() {
return gulp
.src("app/*.html")
.pipe(
wiredep({
ignorePath: /^(\.\.\/)*\.\./,
})
)
.pipe(gulp.dest("app"));
}
export function buildPackage() {
var manifest = require("./dist/manifest.json");
return gulp
.src("dist/**")
.pipe($.zip("source detector-" + manifest.version + ".zip"))
.pipe(gulp.dest("package"));
}
const buildAll = gulp.series(
lint,
babel,
chromeManifest,
[html, images, extras],
size
);
const build = gulp.series(clean, buildAll);
export default build;