revert: (xgplayer) 恢复对构建脚本的修改

This commit is contained in:
vae 2024-12-03 10:24:52 +08:00 committed by gemstone
parent 14f907ebc9
commit de96289e00

View File

@ -218,22 +218,6 @@ async function build (target, { all } = { all: false }) {
fs.copySync(x.path, path.resolve(esDir, path.relative(srcDir, x.path))) 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)
}
})
} }
} }