new changes

This commit is contained in:
Niranjan
2026-04-07 05:05:28 +05:30
parent 7c070224bd
commit a18bba15f2
29975 changed files with 3247495 additions and 2761 deletions

View File

@@ -0,0 +1,14 @@
import { execSync } from 'node:child_process';
import { writeFileSync } from 'node:fs';
let output = '';
try {
output = execSync('node-gyp configure && node-gyp build 2>&1', {
encoding: 'utf8',
});
} catch (err) {
output = err?.stdout || err?.stderr || err?.message || '';
}
writeFileSync('builderror.log', output);