-
Notifications
You must be signed in to change notification settings - Fork 392
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: package internal dependencies #1541
Conversation
@ekashida the package you created (@lwc/shared) can't be private because its used in the compiler and is some other instances where the package might need to be resolved (cjs versions) |
@@ -18,6 +18,7 @@ | |||
"@babel/plugin-proposal-object-rest-spread": "7.0.0", | |||
"@lwc/babel-plugin-component": "1.0.2", | |||
"@lwc/errors": "1.0.2", | |||
"@lwc/shared": "1.0.2", |
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.
@ekashida you fixed some of this few days ago... you explicitly made shared private, but this PR is making it public, which is not ideal since we don't want people to rely on that pkg directly, only us.
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.
Nothing works in several packages because this is used in the main code...
I've opened #1542 as an alternative solution to this issue |
Details
There were some missing dependencies reported by @muenzpraeger
Does this PR introduce breaking changes?
No, it does not introduce breaking changes.