feat:build成功时在终端打印执行成功log

This commit is contained in:
妙码生花 2022-02-21 20:08:28 +08:00
parent 25c3a9c186
commit 8443a52bf8

5
web/src/utils/build.ts Normal file
View File

@ -0,0 +1,5 @@
import pkg from '../../package.json'
export const run = () => {
console.log(`${pkg.name} - build successfully!`)
}
run()