-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: extract tarball to temp directory on Windows (#2846)
* fix: check for errors while extracting downloaded tarball Signed-off-by: David Sanders <[email protected]> * test: parallel installs Signed-off-by: David Sanders <[email protected]> * fix: extract tarball to temp directory on Windows Signed-off-by: David Sanders <[email protected]> --------- Signed-off-by: David Sanders <[email protected]>
- Loading branch information
1 parent
bb76021
commit aaa117c
Showing
4 changed files
with
212 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"gyp" | ||
], | ||
"version": "9.3.1", | ||
"installVersion": 9, | ||
"installVersion": 10, | ||
"author": "Nathan Rajlich <[email protected]> (http://tootallnate.net)", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -23,6 +23,7 @@ | |
"main": "./lib/node-gyp.js", | ||
"dependencies": { | ||
"env-paths": "^2.2.0", | ||
"exponential-backoff": "^3.1.1", | ||
"glob": "^7.1.4", | ||
"graceful-fs": "^4.2.6", | ||
"make-fetch-happen": "^11.0.3", | ||
|
@@ -45,6 +46,6 @@ | |
}, | ||
"scripts": { | ||
"lint": "standard */*.js test/**/*.js", | ||
"test": "npm run lint && tap --timeout=600 test/test-*" | ||
"test": "npm run lint && tap --timeout=1200 test/test-*" | ||
} | ||
} |
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