const fs = require('fs'); const path = require('path'); // 配置 const projectDir = './pages'; // 你的 UniApp 项目路径 const langFilePath = './output3.json'; // 本地语言文件路径 const ignoredFiles = ['node_modules', 'locale']; // 忽略的文件夹或文件 // 加载语言文件 let langData = {}; if (fs.existsSync(langFilePath)) { const langFileContent = fs.readFileSync(langFilePath, 'utf-8'); langData = JSON.parse(langFileContent); } // 正则表达式:匹配汉字 const chineseRegex = /[\u4e00-\u9fa5\u3000-\u303f\uff01-\uff5e\u201c-\u201d\u3008-\u3011]+/g; // 处理单个文件 function processFile(filePath) { let content = fs.readFileSync(filePath, 'utf-8'); // 匹配