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
@actions/http-client
undici
When updating today, I noticed that size of my action bloated by 15k lines because undici was included as a dependency.
undici should have been in devDependencies, but was accidentally included in dependencies.
devDependencies
dependencies
Originally posted by @Jason3S in #1547 (comment)
/@actions/[email protected]: resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==} dependencies: '@actions/http-client': 2.2.0 uuid: 8.3.2 dev: false /@actions/[email protected]: resolution: {integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==} dependencies: tunnel: 0.0.6 undici: 5.26.3 dev: false
The text was updated successfully, but these errors were encountered:
I don't think it can be a dev dependency since it's imported here
toolkit/packages/http-client/src/index.ts
Line 9 in fe3e7ce
but the undici addition is breaking an action we have, not sure why
Sorry, something went wrong.
@jcesarmobile,
You are right. I'm still not seeing why it needs to be added to @actions/http-client.
Successfully merging a pull request may close this issue.
When updating today, I noticed that size of my action bloated by 15k lines because
undici
was included as a dependency.undici
should have been indevDependencies
, but was accidentally included independencies
.Originally posted by @Jason3S in #1547 (comment)
The text was updated successfully, but these errors were encountered: