-
Notifications
You must be signed in to change notification settings - Fork 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
Remove yamlparser dependency #39242
Remove yamlparser dependency #39242
Conversation
This PR does not affect the size of JS and CSS bundles shipped to the user's browser. Generated by performance advisor bot at iscalypsofastyet.com. |
Actually, it seems like this is necessary by |
Hey @tyxla 👋 The issue is that As such, we needed to explicitly depend on this ourselves. It's unclear to me why some builds need |
I also tried to remove When one removes Because the When building the desktop server and bundling all |
Thanks for clarifying, guys. At this point, I'd call this a false alarm then. It's a shame it's being depended on in such a convoluted and non-transparent way, though. Closing. |
It's a pity we can't add explanatory comments to |
We could technically add them, as new keys. Since {
"dependencies": {
"...": "...",
"yamlparser": "0.0.2"
},
"__comment__": "See https://github.com/Automattic/wp-calypso/pull/39242 for why we need yamlparser"
} Not pretty, though 😕 |
Seems like we introduced
yamlparser
as a dependency in #30768. It doesn't seem to be used, though - @sgomes were we planning to use it for anything? If not, it could be removed safely.Changes proposed in this Pull Request
yamlparser
dependencyTesting instructions
npm ci
and verify Calypso builds well.