-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: more performant and reliable npm rebuild
- Loading branch information
Showing
4 changed files
with
43 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
"@develar/semantic-release@^6.3.21": | ||
version "6.3.23" | ||
resolved "https://registry.yarnpkg.com/@develar/semantic-release/-/semantic-release-6.3.23.tgz#80c8ecd7369cf4a5c442d59d24bd614c051dd004" | ||
|
@@ -2447,8 +2445,8 @@ js-tokens@^2.0.0: | |
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" | ||
|
||
js-yaml@^3.4.2, js-yaml@^3.6.1: | ||
version "3.6.1" | ||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" | ||
version "3.7.0" | ||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" | ||
dependencies: | ||
argparse "^1.0.7" | ||
esprima "^2.6.0" | ||
|
@@ -2820,7 +2818,11 @@ minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: | |
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" | ||
|
||
minimist@~0.0.1, [email protected]: | ||
minimist@~0.0.1: | ||
version "0.0.10" | ||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" | ||
|
||
[email protected]: | ||
version "0.0.8" | ||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" | ||
|
||
|
@@ -3453,8 +3455,8 @@ redent@^1.0.0: | |
strip-indent "^1.0.1" | ||
|
||
regenerate@^1.2.1: | ||
version "1.3.1" | ||
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" | ||
version "1.3.2" | ||
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" | ||
|
||
regenerator-runtime@^0.9.5: | ||
version "0.9.6" | ||
|
@@ -4111,8 +4113,8 @@ which-module@^1.0.0: | |
resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" | ||
|
||
which@^1.2.9: | ||
version "1.2.11" | ||
resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" | ||
version "1.2.12" | ||
resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" | ||
dependencies: | ||
isexe "^1.1.1" | ||
|
||
|
@@ -4288,3 +4290,4 @@ zip-stream@^1.1.0: | |
compress-commons "^1.1.0" | ||
lodash "^4.8.0" | ||
readable-stream "^2.0.0" | ||
|
@develar Thanks for the quick fix.
I think
execArgs.push(...additionalArgs)
should be added here as well otherwise the--build-from-source
flag doesn't have a effect. Or am I missing something?