fix: 整理日志、添加颜色、使用统一的日志函数以提高日志可读性

This commit is contained in:
XBB
2024-06-04 02:59:35 +08:00
parent c698ce9562
commit bac2a6b034
15 changed files with 96 additions and 68 deletions

View File

@@ -3,6 +3,7 @@ import path from 'node:path';
import fs from 'fs';
import { dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import { logError } from './log';
const __filename = fileURLToPath(import.meta.url);
@@ -19,6 +20,6 @@ export function cpModule(moduleName: string) {
try {
fs.copyFileSync(path.join(currentDir, fileName), path.join(currentDir, `${moduleName}.node`));
} catch (e) {
console.error(e);
logError(e);
}
}