-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (43 loc) · 1.28 KB
/
index.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
const chalk = require("chalk");
const slog = require("single-line-log");
const { version } = require("webpack");
const semver = require("semver");
class TimeLogWebpackPlugin {
constructor(options) {
this.options = options;
}
apply(compiler) {
compiler.hooks.watchRun.tap("TimeLogPlugin", (watching) => {
let changeFiles;
if (semver.gte(version, "5.0.0")) {
changeFiles = watching.modifiedFiles;
} else {
changeFiles = watching.watchFileSystem.watcher.mtimes;
}
if (changeFiles && changeFiles.size > 0) {
for (let file of changeFiles) {
console.log(chalk.green("当前改动文件:" + file));
}
}
});
compiler.hooks.compile.tap("TimeLogPlugin", () => {
const lineSlog = slog.stdout;
let text = "开始编译:";
this.startTime = Date.now();
this.timer = setInterval(() => {
text += "█";
lineSlog(chalk.green(text));
}, 50);
});
compiler.hooks.done.tap("TimeLogPlugin", () => {
this.timer && clearInterval(this.timer);
let endTime = Date.now();
console.log(
chalk.yellow(
" 编译完成,用时:" + (endTime - this.startTime) / 1000 + "s"
)
);
});
}
}
module.exports = TimeLogWebpackPlugin;