idlize
/
download-napi.mjs
12 строк · 326.0 Байт
1import * as fs from "node:fs"2import { execSync } from "node:child_process"3
4const dir = "./node-addon-api"5
6if (fs.existsSync(dir)) {7process.exit(0)8}
9
10console.log("Downloading NAPI")11execSync("git clone https://github.com/nodejs/node-addon-api.git")12execSync("git clone https://github.com/nodejs/node-api-headers.git")13