From df2e49a99ba52efb9475e6f33dacf65fa592ca60 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sat, 20 Jan 2024 01:12:34 +0200 Subject: [PATCH] Use max jobs also on rebuild (#445) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb2daec..1220302 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "scripts": { "install": "prebuild-install || (node-gyp rebuild --release -j max && node-gyp clean)", - "rebuild": "node-gyp rebuild --release -j 4", + "rebuild": "node-gyp rebuild --release -j max", "prebuild": "prebuild", "upload": "prebuild --upload ${GITHUB_TOKEN}", "lint": "find src -name '*.cc' | xargs -n1 clang-tidy",