-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Replace optimist with minimist #614
Comments
I completely sympathize with the headache of old packages in dependency trees! I'll take a look into fixing that on our side if I can! |
OK, scrap that. |
This comment has been minimized.
This comment has been minimized.
So I've been able to upgrade several instances of minimist in the dependency tree. Many of them won't make a difference, they'll need you (the user) to re-install http-server to pick up the dependency changes. One upgrade did actually make a change I can control though and I'll add that to the next release. However, the initial findings are right that the stubborn one is depended on by |
@substack just has to press the merge-button here https://github.com/substack/node-optimist/issues/152 |
For known reasons we want to get rid of old versions of minimist from our projects. And I looked into dependency then found
http-server
is relying onoptimist
, which is a deprecated package, andoptimist
relies on very old version ofminimist
. https://github.com/substack/node-optimist/blob/master/package.json#L8I'm a yarn user and I received lots of warnings since I used
http-server
in my projects, a lot... A viable solution might be reinstallinghttp-server
and for some reason newer version ofminimist
can be installed and the warn will be gone.Is there anytime to do on
http-server
side?The text was updated successfully, but these errors were encountered: