Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade concat-stream to 2.0.0 #78

Closed
wants to merge 1 commit into from
Closed

Conversation

Krinkle
Copy link

@Krinkle Krinkle commented Dec 23, 2018

This reduces the graph from 18 to 15 dependencies, mainly by
pruning dependencies only needed for EOL-versions of Node
(Node 4 and earlier).

Before

+-- concat-stream@1.6.2
| +-- buffer-from@1.1.1
| +-- inherits@2.0.3
| +-- readable-stream@2.3.6
| | +-- core-util-is@1.0.2         // => removed
| | +-- isarray@1.0.0              // => removed
| | +-- process-nextick-args@2.0.0 // => removed
| | +-- safe-buffer@5.1.2
| | +-- string_decoder@1.1.1
| | `-- util-deprecate@1.0.2
| `-- typedarray@0.0.6
+-- debug@2.6.9
| `-- ms@2.0.0
+-- mkdirp@0.5.1
| `-- minimist@0.0.8
`-- yauzl@2.4.1
  `-- fd-slicer@1.0.1
    `-- pend@1.2.0

After

+-- concat-stream@2.0.0        // => upgraded
| +-- buffer-from@1.1.1        // same
| +-- inherits@2.0.3           // same
| +-- readable-stream@3.1.1    // => upgraded
| | +-- string_decoder@1.2.0   // => upgraded
| | | `-- safe-buffer@5.1.2    // same
| | `-- util-deprecate@1.0.2   // same
| `-- typedarray@0.0.6         // same
+-- debug@2.6.9                // same
| `-- ms@2.0.0                 // same
+-- mkdirp@0.5.1               // same
| `-- minimist@0.0.8           // same
`-- yauzl@2.4.1                // same
  `-- fd-slicer@1.0.1          // same
    `-- pend@1.2.0             // same

Fixes #77.

This reduces the graph from 18 to 15 dependencies, mainly by
pruning dependencies only needed for EOL-versions of Node
(Node 4 and earlier).

== Before

+-- concat-stream@1.6.2
| +-- buffer-from@1.1.1
| +-- inherits@2.0.3
| +-- readable-stream@2.3.6
| | +-- core-util-is@1.0.2         // => removed
| | +-- isarray@1.0.0              // => removed
| | +-- process-nextick-args@2.0.0 // => removed
| | +-- safe-buffer@5.1.2
| | +-- string_decoder@1.1.1
| | `-- util-deprecate@1.0.2
| `-- typedarray@0.0.6
+-- debug@2.6.9
| `-- ms@2.0.0
+-- mkdirp@0.5.1
| `-- minimist@0.0.8
`-- yauzl@2.4.1
  `-- fd-slicer@1.0.1
    `-- pend@1.2.0

== After

+-- concat-stream@2.0.0        // => upgraded
| +-- buffer-from@1.1.1        // same
| +-- inherits@2.0.3           // same
| +-- readable-stream@3.1.1    // => upgraded
| | +-- string_decoder@1.2.0   // => upgraded
| | | `-- safe-buffer@5.1.2    // same
| | `-- util-deprecate@1.0.2   // same
| `-- typedarray@0.0.6         // same
+-- debug@2.6.9                // same
| `-- ms@2.0.0                 // same
+-- mkdirp@0.5.1               // same
| `-- minimist@0.0.8           // same
`-- yauzl@2.4.1                // same
  `-- fd-slicer@1.0.1          // same
    `-- pend@1.2.0             // same

Fixes max-mapper#77.
@malept malept mentioned this pull request Mar 25, 2020
@malept malept closed this in #89 Mar 25, 2020
@Krinkle Krinkle deleted the upgrade branch March 25, 2020 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Shrink dependency graph by pruning Node 4 things
1 participant