-
Notifications
You must be signed in to change notification settings - Fork 61
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
Add dependencies from root as peer-dependencies in extension #1017
Comments
No, I don't think there was a specific reason for that. When the change was introduced I think it was not noticed or not questioned. If you think that's incorrect, could you please provide a PR and we will review it. Thanks for bringing this up. |
I believe that this is a legit issue - the way these production dependencies are defined ATM, they will be available to the test application but not be included in the published Theia extension. If they are only needed in the extension, I think they should be moved there. |
The two related [1] theia-trace-extension/package.json Lines 131 to 132 in a1d5a0c
|
While updating the CDT Cloud blueprint to the latest version of this extension i noticed that some dependencies do not seem to be provided correctly.
To be more specific: It seems like these dependencies from the root package.json are only references as dependencies there, but not in the
theia-traceviewer
extensionspackage.json
.Therefore, i need to manually add these dependencies to my project, when i want to consume the
theia-traceviewer
extension.These dependencies should probably be added as peer dependencies in the
theia-traceviewer package.json
. Or was there a specifiic reason for it to be implemented this way?The text was updated successfully, but these errors were encountered: