Skip to content

Commit

Permalink
change unzip packager
Browse files Browse the repository at this point in the history
  • Loading branch information
potapovDim committed Jul 9, 2019
1 parent e3cc4d8 commit a996981
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/chrome.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const url = 'https://chromedriver.storage.googleapis.com'

const fs = require('fs')
const fetch = require('node-fetch')
const unzip = require('unzip')
const unzip = require('unzipper')

const {spawn, execSync} = require('child_process')

Expand Down
2 changes: 1 addition & 1 deletion drivers/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const releaseListUrl = 'https://api.github.com/repos/mozilla/geckodriver/release

const fs = require('fs')
const fetch = require('node-fetch')
const unzip = require('unzip')
const unzip = require('unzipper')
const zlib = require('zlib')
const tar = require('tar')
const mkdirp = require('mkdirp')
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awb",
"version": "0.7.9",
"version": "0.7.10",
"description": "simple light weight interface for selenium webdriver (node js)",
"main": "./awb.js",
"bin": {
Expand Down Expand Up @@ -44,9 +44,9 @@
},
"homepage": "https://github.com/potapovDim/interface-webdriver#readme",
"dependencies": {
"node-fetch": "^2.2.0",
"node-fetch": "^2.6.0",
"tar": "^4.4.6",
"unzip": "^0.1.11",
"unzipper": "^0.10.1",
"xml2js": "^0.4.19"
},
"engines": {
Expand Down

0 comments on commit a996981

Please sign in to comment.