This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

15
node_modules/lmdb/bin/download-prebuilds.js generated vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env node
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import { exec } from 'child_process';
exec('download-msgpackr-prebuilds', propagateOutput);
process.chdir(fileURLToPath(dirname(dirname(import.meta.url))));
exec('prebuildify-ci download', propagateOutput);
function propagateOutput(error, stdout, stderr) {
console.error(stderr);
console.log(stdout);
if (error?.code)
process.exit(error.code);
}