mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 02:00:25 +08:00
33 lines
901 B
TypeScript
33 lines
901 B
TypeScript
// #!/usr/bin/env node
|
|
|
|
// import { sh } from 'tasksfile';
|
|
|
|
import { argv } from 'yargs';
|
|
import { runBuildConfig } from './buildConf';
|
|
import { runUpdateHtml } from './updateHtml';
|
|
import { errorConsole, successConsole } from '../utils';
|
|
import { startGzipStyle } from '../plugin/gzip/compress';
|
|
|
|
export const runBuild = async () => {
|
|
try {
|
|
const argvList = argv._;
|
|
// let cmd = `cross-env NODE_ENV=production vite build`;
|
|
// // await run('cross-env', ['NODE_ENV=production', 'vite', 'build']);
|
|
// await sh(cmd, {
|
|
// async: true,
|
|
// nopipe: true,
|
|
// });
|
|
|
|
// Generate configuration file
|
|
if (!argvList.includes('no-conf')) {
|
|
await runBuildConfig();
|
|
}
|
|
await runUpdateHtml();
|
|
await startGzipStyle();
|
|
successConsole('Vite Build successfully!');
|
|
} catch (error) {
|
|
errorConsole('Vite Build Error\n' + error);
|
|
process.exit(1);
|
|
}
|
|
};
|