refactror: cpmoudle

此处非NC运行时的代码 用于打包时运行
This commit is contained in:
手瓜一十雪 2024-06-04 12:26:19 +08:00 committed by GitHub
parent ab22b775f1
commit 948cf5cca6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,8 +3,6 @@ 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);
const __dirname = dirname(__filename);
@ -20,6 +18,6 @@ export function cpModule(moduleName: string) {
try {
fs.copyFileSync(path.join(currentDir, fileName), path.join(currentDir, `${moduleName}.node`));
} catch (e) {
logError(e);
console.error(e);
}
}