mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
/**
|
|
* Generate additional configuration files when used for packaging. The file can be configured with some global variables, so that it can be changed directly externally without repackaging
|
|
*/
|
|
import fs from 'fs-extra'
|
|
import colors from 'picocolors'
|
|
import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from '../constant'
|
|
|
|
import { getEnvConfig, getRootPath } from '../utils'
|
|
import { getConfigFileName } from '../getConfigFileName'
|
|
|
|
import pkg from '../../package.json'
|
|
|
|
function createConfig(
|
|
{
|
|
configName,
|
|
config,
|
|
configFileName = GLOB_CONFIG_FILE_NAME,
|
|
}: { configName: string, config: any, configFileName?: string } = { configName: '', config: {} },
|
|
) {
|
|
try {
|
|
const windowConf = `window.${configName}`
|
|
// Ensure that the variable will not be modified
|
|
const configStr = `${windowConf}=${JSON.stringify(config)};
|
|
Object.freeze(${windowConf});
|
|
Object.defineProperty(window, "${configName}", {
|
|
configurable: false,
|
|
writable: false,
|
|
});
|
|
`.replace(/\s/g, '')
|
|
fs.mkdirp(getRootPath(OUTPUT_DIR))
|
|
fs.writeFileSync(getRootPath(`${OUTPUT_DIR}/${configFileName}`), configStr)
|
|
|
|
console.log(`${colors.cyan(`✨ [${pkg.name}]`)} - configuration file is build successfully:`)
|
|
console.log(`${colors.gray(`${OUTPUT_DIR}/${colors.green(configFileName)}`)}\n`)
|
|
}
|
|
catch (error) {
|
|
console.log(colors.red(`configuration file configuration file failed to package:\n${error}`))
|
|
}
|
|
}
|
|
|
|
export function runBuildConfig() {
|
|
const config = getEnvConfig()
|
|
const configFileName = getConfigFileName(config)
|
|
createConfig({ config, configName: configFileName })
|
|
}
|