We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using got to hit the Vue endpoint on UNPKG fails silently.
For it to not silently fail.
const got = require('got'); got('https://unpkg.com/[email protected]/dist/vue.js', { cache: new Map(), // Removing this fixes it }).then(console.log);
Interestingly, other endpoints work fine:
got('https://unpkg.com/react', { cache: new Map(), }).then(console.log);
Will be using v10.7.0 for now.
v10.7.0
The text was updated successfully, but these errors were encountered:
Are you saying that it works as expected on 10.7.0?
Sorry, something went wrong.
Yep
Found the bug
7b19e8f
Thanks @szmarczak !!
No branches or pull requests
Describe the bug
Actual behavior
Using got to hit the Vue endpoint on UNPKG fails silently.
Expected behavior
For it to not silently fail.
Code to reproduce
Interestingly, other endpoints work fine:
Will be using
v10.7.0
for now.Checklist
The text was updated successfully, but these errors were encountered: