Skip to content

Commit

Permalink
chore: bump extract-zip dependency (#1696)
Browse files Browse the repository at this point in the history
Fixes #1510
  • Loading branch information
aslushnikov authored Apr 7, 2020
1 parent c6f580f commit 949dc7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.0",
"extract-zip": "^1.6.6",
"extract-zip": "^2.0.0",
"https-proxy-agent": "^3.0.0",
"jpeg-js": "^0.3.6",
"mime": "^2.4.4",
Expand Down
11 changes: 1 addition & 10 deletions src/server/browserFetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export async function downloadBrowser(options: DownloadOptions): Promise<void> {
const zipPath = path.join(os.tmpdir(), `playwright-download-${browser}-${platform}-${revision}.zip`);
try {
await downloadFile(url, zipPath, progress);
await extractZip(zipPath, downloadPath);
await extract(zipPath, {dir: downloadPath});
} finally {
if (await existsAsync(zipPath))
await unlinkAsync(zipPath);
Expand Down Expand Up @@ -211,15 +211,6 @@ function downloadFile(url: string, destinationPath: string, progressCallback: On
}
}

function extractZip(zipPath: string, folderPath: string): Promise<Error | null> {
return new Promise((fulfill, reject) => extract(zipPath, {dir: folderPath}, err => {
if (err)
reject(err);
else
fulfill();
}));
}

function httpRequest(url: string, method: string, response: (r: any) => void) {
let options: any = URL.parse(url);
options.method = method;
Expand Down

0 comments on commit 949dc7b

Please sign in to comment.