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