-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
fix: add package.json metadata for webpack-dev-server #22292
Conversation
Thanks for taking the time to open a PR!
|
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cypress-io/cypress.git" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, @ryanthemanuel i bet this is why we were getting "authenticity cannot be established" - we were using git+ssh, and having repository.url
set can force npm to use https
instead, avoiding known_hosts
verification. kudos @ZachJW34 for actually tracking this down
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
although i don't think you were touching these files when you first ran into it 😕
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Glad I could (unknowingly) help 😅
User facing changelog
na
Additional details
npm-release is timing out on
@cypress/webpack-dev-server
. It is failing withThe package.json for
@cypress/webpack-dev-server
is missing some required fields. It used to have these but we dropped them when doing the overhaul. I tested this change by ssh-ing into the npm-release job and verifying that it was able to move past this timeout.I also removed the configured registry for
@cypress/vue2
as we have had issues in the past releasing a package configured with thehttp://
since it's deprecated in favor ofhttps://
which is the default value.Steps to test
Job shows what's going on, I was only able to reproduce it on the CI machine
How has the user experience changed?
na
PR Tasks
cypress-documentation
?type definitions
?