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.
39 lines
1.3 KiB
39 lines
1.3 KiB
/**
|
|
* 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, { writeFileSync } from 'fs-extra'
|
|
import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from '../constant'
|
|
|
|
import { getEnvConfig, getRootPath } from '../utils'
|
|
import { getConfigFileName } from '../getConfigFileName'
|
|
|
|
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))
|
|
writeFileSync(getRootPath(`${OUTPUT_DIR}/${configFileName}`), configStr)
|
|
}
|
|
catch (error) {
|
|
}
|
|
}
|
|
|
|
export function runBuildConfig() {
|
|
const config = getEnvConfig()
|
|
const configFileName = getConfigFileName(config)
|
|
createConfig({ config, configName: configFileName })
|
|
}
|