Skip to content

Commit

Permalink
Replaced extract-zip-fork by extract-zip
Browse files Browse the repository at this point in the history
no issue

- we had to fork the original repository at one point, because of slow maintenance
- maintenance is back now
- max-mapper/extract-zip#52 was merged and released
  • Loading branch information
kirrg001 committed Oct 31, 2017
1 parent cfca111 commit 9d4ed8c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion core/server/data/importer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var _ = require('lodash'),
os = require('os'),
glob = require('glob'),
uuid = require('uuid'),
extract = require('extract-zip-fork'),
extract = require('extract-zip'),
errors = require('../../errors'),
logging = require('../../logging'),
ImageHandler = require('./handlers/image'),
Expand Down
2 changes: 1 addition & 1 deletion core/test/unit/utils/zip-folder_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var should = require('should'), // jshint ignore:line
path = require('path'),
fs = require('fs-extra'),
extract = require('extract-zip-fork'),
extract = require('extract-zip'),
utils = require('../../../server/utils');

describe('Utils: zip-folder', function () {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"express": "4.16.2",
"express-brute": "1.0.1",
"express-hbs": "1.0.4",
"extract-zip-fork": "1.5.1",
"extract-zip": "1.6.6",
"fs-extra": "3.0.1",
"ghost-gql": "0.0.8",
"ghost-ignition": "2.8.16",
Expand Down
30 changes: 13 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -790,14 +790,6 @@ concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"

concat-stream@1.5.0, concat-stream@^1.4.1, concat-stream@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611"
dependencies:
inherits "~2.0.1"
readable-stream "~2.0.0"
typedarray "~0.0.5"

concat-stream@1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
Expand All @@ -806,6 +798,14 @@ concat-stream@1.6.0:
readable-stream "^2.2.2"
typedarray "^0.0.6"

concat-stream@^1.4.1, concat-stream@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611"
dependencies:
inherits "~2.0.1"
readable-stream "~2.0.0"
typedarray "~0.0.5"

config-chain@~1.1.5:
version "1.1.11"
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2"
Expand Down Expand Up @@ -1030,10 +1030,6 @@ dateformat@~1.0.12:
get-stdin "^4.0.1"
meow "^3.3.0"

debug@0.7.4:
version "0.7.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39"

debug@2.2.0, debug@~2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
Expand Down Expand Up @@ -1493,12 +1489,12 @@ extglob@^0.3.1:
dependencies:
is-extglob "^1.0.0"

extract-zip-fork@1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/extract-zip-fork/-/extract-zip-fork-1.5.1.tgz#f28d9409c1ec90256deb5875cb80ae2f9b292a7b"
extract-zip@1.6.6:
version "1.6.6"
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c"
dependencies:
concat-stream "1.5.0"
debug "0.7.4"
concat-stream "1.6.0"
debug "2.6.9"
mkdirp "0.5.0"
yauzl "2.4.1"

Expand Down

0 comments on commit 9d4ed8c

Please sign in to comment.