mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-11-30 02:07:38 +08:00
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import type { Plugin } from "vite";
|
||
import dayjs, { Dayjs } from "dayjs";
|
||
import duration from "dayjs/plugin/duration";
|
||
import { green, blue, bold } from "picocolors";
|
||
import { getPackageSize } from "@pureadmin/utils";
|
||
dayjs.extend(duration);
|
||
|
||
export function viteBuildInfo(): Plugin {
|
||
let config: { command: string };
|
||
let startTime: Dayjs;
|
||
let endTime: Dayjs;
|
||
return {
|
||
name: "vite:buildInfo",
|
||
configResolved(resolvedConfig: { command: string }) {
|
||
config = resolvedConfig;
|
||
},
|
||
buildStart() {
|
||
console.log(
|
||
bold(
|
||
green(
|
||
`👏欢迎使用${blue(
|
||
"[vue-pure-admin]"
|
||
)},如果您感觉不错,记得点击后面链接给个star哦💖 https://github.com/xiaoxian521/vue-pure-admin`
|
||
)
|
||
)
|
||
);
|
||
if (config.command === "build") {
|
||
startTime = dayjs(new Date());
|
||
}
|
||
},
|
||
closeBundle() {
|
||
if (config.command === "build") {
|
||
endTime = dayjs(new Date());
|
||
getPackageSize({
|
||
callback: (size: string) => {
|
||
console.log(
|
||
bold(
|
||
green(
|
||
`🎉恭喜打包完成(总用时${dayjs
|
||
.duration(endTime.diff(startTime))
|
||
.format("mm分ss秒")},打包后的大小为${size})`
|
||
)
|
||
)
|
||
);
|
||
}
|
||
});
|
||
}
|
||
}
|
||
};
|
||
}
|