deps: Specify superstring as a tarball URL, not a git URL #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Specified the
superstring
dependency as as a tarball URL inpackage.json
, not as a git URL.Motivation:
Tarballs are the simpler format for package managers to handle.
(Git URLs are cloned into a temp dir, installed there, then the result is copied. Tarballs are simply fetched and extracted.)
In my opinion, for reasons of performance and simplicity, tarballs should be preferred over git URLs in
package.json
, where possible.(Note: I forgot to do it this way in #5, but I remembered while I was going over to update *this* package as a dependency in the
github
package repo. I figured I can circle back and do it now.)