From 4bd0f91202c8f2feb339b0b1aa76fa842981d1af Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Mon, 14 Sep 2020 16:00:14 -0500 Subject: [PATCH] use 'max' for JOBs to use all available cores https://github.com/nodejs/node-gyp/pull/1770 --- script/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/config.js b/script/config.js index 748d4c214341..ed67e7fdcb6e 100644 --- a/script/config.js +++ b/script/config.js @@ -126,4 +126,4 @@ function getNpmBinPath(external = false) { : npmBinName; } -process.env.JOBS = 16; // parallel build in node-gyp +process.env.JOBS = 'max'; // parallel build in node-gyp