fix: 修复CodeQL检测到的代码问题

This commit is contained in:
yhh
2025-12-03 18:08:19 +08:00
parent f7535a2aac
commit 293ac2dca3
18 changed files with 60 additions and 67 deletions

View File

@@ -40,18 +40,26 @@ function updateModuleSizes() {
const stat = fs.statSync(distIndexPath);
const actualSize = stat.size;
// Read module.json
const moduleJson = JSON.parse(fs.readFileSync(moduleJsonPath, 'utf-8'));
const oldSize = moduleJson.estimatedSize;
// Read module.json - use file descriptor to avoid race condition
const fd = fs.openSync(moduleJsonPath, 'r+');
try {
const content = fs.readFileSync(fd, 'utf-8');
const moduleJson = JSON.parse(content);
const oldSize = moduleJson.estimatedSize;
// Update if different
if (oldSize !== actualSize) {
moduleJson.estimatedSize = actualSize;
fs.writeFileSync(moduleJsonPath, JSON.stringify(moduleJson, null, 2) + '\n');
const oldKB = oldSize ? (oldSize / 1024).toFixed(1) : 'N/A';
const newKB = (actualSize / 1024).toFixed(1);
console.log(` ${pkg}: ${oldKB} KB -> ${newKB} KB`);
updated++;
// Update if different
if (oldSize !== actualSize) {
moduleJson.estimatedSize = actualSize;
const newContent = JSON.stringify(moduleJson, null, 2) + '\n';
fs.ftruncateSync(fd, 0);
fs.writeSync(fd, newContent, 0, 'utf-8');
const oldKB = oldSize ? (oldSize / 1024).toFixed(1) : 'N/A';
const newKB = (actualSize / 1024).toFixed(1);
console.log(` ${pkg}: ${oldKB} KB -> ${newKB} KB`);
updated++;
}
} finally {
fs.closeSync(fd);
}
} catch (err) {
console.error(` Error processing ${pkg}:`, err.message);