-
Notifications
You must be signed in to change notification settings - Fork 975
fix: add missing eventsource-parser dependency #424
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 missing eventsource-parser dependency #424
Conversation
@domnit are you still working on this? Could you resolve the conflicts? |
@@ -50,6 +50,7 @@ | |||
"cors": "^2.8.5", | |||
"cross-spawn": "^7.0.3", | |||
"eventsource": "^3.0.2", | |||
"eventsource-parser": "^3.0.0", |
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.
Looks like eventsource lists ^3.0.1, might be good to follow it
https://github.com/EventSource/eventsource/blob/d4385cb8d4c8f59949c4dd64412b199c9b57d8db/package.json#L66
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.
eventsource used here is 3.0.2, which had 3.0.0 eventsource-parser dependency
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.
Thank you
@@ -50,6 +50,7 @@ | |||
"cors": "^2.8.5", | |||
"cross-spawn": "^7.0.3", | |||
"eventsource": "^3.0.2", | |||
"eventsource-parser": "^3.0.0", |
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.
eventsource used here is 3.0.2, which had 3.0.0 eventsource-parser dependency
Adds missing dependency on
eventsource-parser
.Motivation and Context
src/client/streamableHttp.ts
imports fromeventsource-parser
but the package was not listed inpackage.json
.How Has This Been Tested?
Fixed the build in a test client application.
Breaking Changes
None
Types of changes
Checklist
Additional context