Swap extract-zip for @tryghost/extract-zip

- our version has some bug fixes
This commit is contained in:
Hannah Wolfe 2020-03-20 20:03:38 +00:00
parent 35ff6d1462
commit 3b6021a34e
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
const Promise = require('bluebird');
const extract = require('extract-zip');
const extract = require('@tryghost/extract-zip');
const zipFolder = require('./lib/zip-folder');
module.exports = {

View File

@ -24,9 +24,9 @@
"sinon": "9.0.1"
},
"dependencies": {
"@tryghost/extract-zip": "^1.6.6",
"archiver": "^3.1.1",
"bluebird": "^3.7.2",
"extract-zip": "^1.6.7",
"fs-extra": "^9.0.0"
}
}

View File

@ -4,7 +4,7 @@ require('./utils');
const path = require('path');
const fs = require('fs-extra');
const extract = require('extract-zip');
const extract = require('@tryghost/extract-zip');
// Mimic how we expect this to be required
const {zipFolder} = require('../');