utils.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. import fs from 'fs';
  2. import path from 'path';
  3. import dotenv from 'dotenv';
  4. export function isDevFn(mode: string): boolean {
  5. return mode === 'development';
  6. }
  7. export function isProdFn(mode: string): boolean {
  8. return mode === 'production';
  9. }
  10. /**
  11. * Whether to generate package preview
  12. */
  13. export function isReportMode(): boolean {
  14. return process.env.REPORT === 'true';
  15. }
  16. export interface ViteEnv {
  17. VITE_PORT: number;
  18. VITE_USE_MOCK: boolean;
  19. VITE_USE_PWA: boolean;
  20. VITE_PUBLIC_PATH: string;
  21. VITE_PROXY: [string, string][];
  22. VITE_GLOB_APP_TITLE: string;
  23. VITE_GLOB_APP_SHORT_NAME: string;
  24. VITE_USE_CDN: boolean;
  25. VITE_DROP_CONSOLE: boolean;
  26. VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none';
  27. VITE_LEGACY: boolean;
  28. VITE_USE_IMAGEMIN: boolean;
  29. VITE_DYNAMIC_IMPORT: boolean;
  30. }
  31. // Read all environment variable configuration files to process.env
  32. export function wrapperEnv(envConf: Recordable): ViteEnv {
  33. const ret: any = {};
  34. for (const envName of Object.keys(envConf)) {
  35. let realName = envConf[envName].replace(/\\n/g, '\n');
  36. realName = realName === 'true' ? true : realName === 'false' ? false : realName;
  37. if (envName === 'VITE_PORT') {
  38. realName = Number(realName);
  39. }
  40. if (envName === 'VITE_PROXY') {
  41. try {
  42. realName = JSON.parse(realName);
  43. } catch (error) {}
  44. }
  45. ret[envName] = realName;
  46. process.env[envName] = realName;
  47. }
  48. return ret;
  49. }
  50. /**
  51. * Get the environment variables starting with the specified prefix
  52. * @param match prefix
  53. * @param confFiles ext
  54. */
  55. export function getEnvConfig(match = 'VITE_GLOB_', confFiles = ['.env', '.env.production']) {
  56. let envConfig = {};
  57. confFiles.forEach((item) => {
  58. try {
  59. const env = dotenv.parse(fs.readFileSync(path.resolve(process.cwd(), item)));
  60. envConfig = { ...envConfig, ...env };
  61. } catch (error) {}
  62. });
  63. Object.keys(envConfig).forEach((key) => {
  64. const reg = new RegExp(`^(${match})`);
  65. if (!reg.test(key)) {
  66. Reflect.deleteProperty(envConfig, key);
  67. }
  68. });
  69. return envConfig;
  70. }
  71. /**
  72. * Get user root directory
  73. * @param dir file path
  74. */
  75. export function getRootPath(...dir: string[]) {
  76. return path.resolve(process.cwd(), ...dir);
  77. }