From de96289e0066874db312820db53019097aa6b64f Mon Sep 17 00:00:00 2001 From: vae <18137693952@163.com> Date: Tue, 3 Dec 2024 10:24:52 +0800 Subject: [PATCH] =?UTF-8?q?revert:=20(xgplayer)=20=E6=81=A2=E5=A4=8D?= =?UTF-8?q?=E5=AF=B9=E6=9E=84=E5=BB=BA=E8=84=9A=E6=9C=AC=E7=9A=84=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/commands/build/index.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/scripts/commands/build/index.js b/scripts/commands/build/index.js index 60e348c4..9721cec0 100644 --- a/scripts/commands/build/index.js +++ b/scripts/commands/build/index.js @@ -218,22 +218,6 @@ async function build (target, { all } = { all: false }) { fs.copySync(x.path, path.resolve(esDir, path.relative(srcDir, x.path))) }) } - - // Copy the language file to the es directory - const langDir = path.resolve(pkgDir, 'src/lang') - const targetLangDir = path.resolve(esDir, 'lang') - - walk(langDir, { - nodir: true, - traverseAll: true - }).forEach(x => { - const relativePath = path.relative(langDir, x.path) - const targetPath = path.resolve(targetLangDir, relativePath) - - if (!fs.existsSync(targetPath)) { - fs.copySync(x.path, targetPath) - } - }) } }