You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
553 B
24 lines
553 B
12 months ago
|
// #!/usr/bin/env node
|
||
|
|
||
|
import { runBuildConfig } from './buildConf';
|
||
|
import colors from 'picocolors';
|
||
|
|
||
|
import pkg from '../../package.json';
|
||
|
|
||
|
export const runBuild = async () => {
|
||
|
try {
|
||
|
const argvList = process.argv.splice(2);
|
||
|
|
||
|
// Generate configuration file
|
||
|
if (!argvList.includes('disabled-config')) {
|
||
|
runBuildConfig();
|
||
|
}
|
||
|
|
||
|
console.log(`✨ ${colors.cyan(`[${pkg.name}]`)}` + ' - build successfully!');
|
||
|
} catch (error) {
|
||
|
console.log(colors.red('vite build error:\n' + error));
|
||
|
process.exit(1);
|
||
|
}
|
||
|
};
|
||
|
runBuild();
|