mirror of
https://gitee.com/bootx/dax-pay-h5
synced 2026-08-10 06:46:05 +08:00
- 移除 @oxc-parser/binding-win32-x64-msvc 平台锁定(改由 pnpm 自动解析) - eslint 8→9, @antfu/eslint-config 2→9, eslint-plugin-format 升级 - commitlint 18→19, @types/node 25→24 对齐运行时 Node v24 - rimraf 3→6 - 适配 @antfu9 新规则: 空对象/Function 类型/空 catch/正则捕获组 - lint:fix 统一新风格(引号/分号等自动格式化)
76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
import fs from 'node:fs'
|
|
import path from 'node:path'
|
|
import dotenv from 'dotenv'
|
|
|
|
export function isDevFn(mode: string): boolean {
|
|
return mode === 'development'
|
|
}
|
|
|
|
export function isProdFn(mode: string): boolean {
|
|
return mode === 'production'
|
|
}
|
|
|
|
/**
|
|
* Whether to generate package preview
|
|
*/
|
|
export function isReportMode(): boolean {
|
|
return process.env.REPORT === 'true'
|
|
}
|
|
|
|
// Read all environment variable configuration files to process.env
|
|
// 读取并处理所有环境变量配置文件 .env
|
|
export function wrapperEnv(envConf: Recordable): ViteEnv {
|
|
const ret: any = {}
|
|
|
|
for (const envName of Object.keys(envConf)) {
|
|
// 去除空格
|
|
let realName = envConf[envName].replace(/\\n/g, '\n')
|
|
realName = realName === 'true' ? true : realName === 'false' ? false : realName
|
|
|
|
if (envName === 'VITE_PORT') {
|
|
realName = Number(realName)
|
|
}
|
|
if (envName === 'VITE_PROXY') {
|
|
try {
|
|
realName = JSON.parse(realName)
|
|
}
|
|
catch {}
|
|
}
|
|
ret[envName] = realName
|
|
process.env[envName] = realName
|
|
}
|
|
return ret
|
|
}
|
|
|
|
/**
|
|
* Get the environment variables starting with the specified prefix
|
|
* @param match prefix
|
|
* @param confFiles ext
|
|
*/
|
|
export function getEnvConfig(match = 'VITE_GLOB_', confFiles = ['.env', '.env.production']) {
|
|
let envConfig = {}
|
|
confFiles.forEach((item) => {
|
|
try {
|
|
const env = dotenv.parse(fs.readFileSync(path.resolve(process.cwd(), item)))
|
|
envConfig = { ...envConfig, ...env }
|
|
}
|
|
catch {}
|
|
})
|
|
|
|
Object.keys(envConfig).forEach((key) => {
|
|
const reg = new RegExp(`^(${match})`)
|
|
if (!reg.test(key)) {
|
|
Reflect.deleteProperty(envConfig, key)
|
|
}
|
|
})
|
|
return envConfig
|
|
}
|
|
|
|
/**
|
|
* Get user root directory
|
|
* @param dir file path
|
|
*/
|
|
export function getRootPath(...dir: string[]) {
|
|
return path.resolve(process.cwd(), ...dir)
|
|
}
|