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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
// #!/usr/bin/env node
|
|
|
|
|
|
|
|
import colors from 'picocolors'
|
|
|
|
|
|
|
|
import pkg from '../../package.json'
|
|
|
|
import { runBuildConfig } from './buildConf'
|
|
|
|
|
|
|
|
export function runBuild() {
|
|
|
|
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: any) {
|
|
|
|
console.log(colors.red(`vite build error:\n${error}`))
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
runBuild()
|