1 Star 0 Fork 67

芝华塔尼欧/ChatGPT-On-CS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
removeLocales.js 531 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs');
const path = require('path');
module.exports = async function (params) {
// Assuming 'locales' directory is directly inside the app output directory
const localesDir = path.join(params.appOutDir, 'locales');
try {
const files = await fs.promises.readdir(localesDir);
for (const file of files) {
if (!file.endsWith('zh-CN.pak')) {
await fs.promises.unlink(path.join(localesDir, file));
}
}
} catch (err) {
console.error('Error removing locales:', err);
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yxm_yxm_admin/ChatGPT-On-CS.git
[email protected]:yxm_yxm_admin/ChatGPT-On-CS.git
yxm_yxm_admin
ChatGPT-On-CS
ChatGPT-On-CS
main

搜索帮助