forked from tavyandy97/span-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.babel.js
83 lines (64 loc) · 1.93 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
import gulp from "gulp";
import loadPlugins from "gulp-load-plugins";
import webpack from "webpack";
import rimraf from "rimraf";
const plugins = loadPlugins();
import popupWebpackConfig from "./popup/webpack.config";
import eventWebpackConfig from "./event/webpack.config";
import contentWebpackConfig from "./content/webpack.config";
gulp.task("popup-js", ["clean"], (cb) => {
webpack(popupWebpackConfig, (err, stats) => {
if (err) throw new plugins.util.PluginError("webpack", err);
plugins.util.log("[webpack]", stats.toString());
cb();
});
});
gulp.task("event-js", ["clean"], (cb) => {
webpack(eventWebpackConfig, (err, stats) => {
if (err) throw new plugins.util.PluginError("webpack", err);
plugins.util.log("[webpack]", stats.toString());
cb();
});
});
gulp.task("content-js", ["clean"], (cb) => {
webpack(contentWebpackConfig, (err, stats) => {
if (err) throw new plugins.util.PluginError("webpack", err);
plugins.util.log("[webpack]", stats.toString());
cb();
});
});
gulp.task("popup-html", ["clean"], () => {
return gulp
.src("popup/src/index.html")
.pipe(plugins.rename("popup.html"))
.pipe(gulp.dest("./build"));
});
gulp.task("copy-manifest", ["clean"], () => {
return gulp.src("manifest.json").pipe(gulp.dest("./build"));
});
gulp.task("clean", (cb) => {
rimraf("./build", cb);
});
gulp.task("copy-libs", ["clean"], () => {
return gulp
.src("./content/src/scripts/libs/**/*")
.pipe(gulp.dest("./build/libs"));
});
gulp.task("copy-icons", ["clean"], () => {
return gulp.src("./icons/**/*").pipe(gulp.dest("./build/icons"));
});
gulp.task("build", [
"copy-libs",
"copy-icons",
"copy-manifest",
"popup-js",
"popup-html",
"event-js",
"content-js",
]);
gulp.task("watch", ["default"], () => {
gulp.watch("popup/**/*", ["build"]);
gulp.watch("content/**/*", ["build"]);
gulp.watch("event/**/*", ["build"]);
});
gulp.task("default", ["build"]);