From ed747e6e497c27dbf05caa2a95e29a06b375f832 Mon Sep 17 00:00:00 2001 From: xiangshu233 Date: Tue, 2 Jan 2024 17:47:06 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20:bug:=20=E4=BF=AE=E5=A4=8D=20fs-extra=20?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC=E5=90=8E=20build=20writeFi?= =?UTF-8?q?leSync=20=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/script/buildConf.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/script/buildConf.ts b/build/script/buildConf.ts index eb9ce5b..d228816 100644 --- a/build/script/buildConf.ts +++ b/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 { getRootPath, getEnvConfig } from '../utils'; @@ -28,7 +28,7 @@ function createConfig( }); `.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');