-
Notifications
You must be signed in to change notification settings - Fork 16
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
Support newer versions of axios? #14
Comments
@papandreou nice point, also I was getting an error with the current The error:
My temporary fix to it is override the
Would be great to review this question in this lib and fix it :) |
Ping @Catbuttes 🤗 |
axios is at latest 1.3.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I'm using
axios-ntlm
via thesoap
module. I noticed that I end up with an older version ofaxios
(latest is 0.27.2, I'm getting 0.21.4):(npm version 8.12.1, node version 18.5.0)
soap
has a peer dep onaxios@>=0.21.1
, but because ofaxios-ntlm
's peer dep onaxios@^0.21.3
, npm installs 0.21.4. It's because^
only matches0.21.3
and0.21.4
due to the pre-1.0.0 version number:So I guess what I'm asking is: Does
axios-ntlm
support newer versions ofaxios
, and if so, could we make the peer dep more liberal so that users can use newer version without adding anoverride
topackage.json
? 🤗The text was updated successfully, but these errors were encountered: