You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library has used the axios: ^0.18.0 as a devDependency to pull in the Axios while development.
It has to be in the dependency section of the package.json to force relevant Axios version constraint as well.
{
"dependencies": {
"axios": "^0.18.0",
}
}
This way your package will not be installed in the projects using axios: 1.13.0.
I used your library to solve the rate limiting Issue in our project, But wasted an entire day as I relied on TS to tell me there wasn't any Error. Found out the Issue doing debugging the runtime values.
The text was updated successfully, but these errors were encountered:
This library has used the
axios: ^0.18.0
as a devDependency to pull in the Axios while development.package.json
to force relevant Axios version constraint as well.This way your package will not be installed in the projects using
axios: 1.13.0
.The text was updated successfully, but these errors were encountered: