mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
Swap extract-zip for @tryghost/extract-zip
- our version has some bug fixes
This commit is contained in:
parent
35ff6d1462
commit
3b6021a34e
@ -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 = {
|
||||
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
@ -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('../');
|
||||
|
Loading…
Reference in New Issue
Block a user