瀏覽代碼

update: build script

dev
powersir 1 年之前
父節點
當前提交
61746fdcfc
共有 2 個文件被更改,包括 5 次插入2 次删除
  1. +3
    -2
      build/script/buildConf.ts
  2. +2
    -0
      package.json

+ 3
- 2
build/script/buildConf.ts 查看文件

@@ -2,7 +2,7 @@
* 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 { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from '../constant';
import fs, { writeFileSync } from 'fs-extra';
import fs from 'fs-extra';
import colors from 'picocolors';

import { getEnvConfig, getRootPath } from '../utils';
@@ -31,7 +31,8 @@ function createConfig(params: CreateConfigParams) {
`.replace(/\s/g, '');

fs.mkdirp(getRootPath(OUTPUT_DIR));
writeFileSync(getRootPath(`${OUTPUT_DIR}/${configFileName}`), configStr);
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');


+ 2
- 0
package.json 查看文件

@@ -48,10 +48,12 @@
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"esno": "^0.17.0",
"fs-extra": "^11.1.1",
"lint-staged": "^13.2.2",
"picocolors": "^1.0.0",


Loading…
取消
儲存