-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
chore(worker-api/impl): pass stream to parent #324
Merged
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
9d3788d
init
Aslemammad 04e6478
message callbacks delete
Aslemammad 93851a6
update
Aslemammad f02c0f8
update
Aslemammad 623fc04
Update packages/waku/src/lib/handlers/dev-worker-impl.ts
Aslemammad d3baef1
update
Aslemammad 67e8d73
Merge branch 'main' into chore/pass-stream-to-parent
dai-shi bf07c9e
main -> worker
Aslemammad 142de4b
Merge branch 'chore/pass-stream-to-parent' of github.com:aslemammad/w…
Aslemammad 6b212cb
prettier
Aslemammad 924065b
transferlist
Aslemammad 607a124
reference lost fix
Aslemammad 9f82a04
Merge branch 'main' into chore/pass-stream-to-parent
dai-shi 8e33fc0
Update packages/waku/src/lib/handlers/dev-worker-api.ts
Aslemammad 6a164b7
Update packages/waku/src/lib/handlers/dev-worker-api.ts
Aslemammad 628f189
remove pipe message
Aslemammad 8ecca3c
remove async
Aslemammad 6d422f6
ssr fix
Aslemammad a59faea
transform stream (removing controllerMap)
Aslemammad ac429d6
lint
Aslemammad 33439d5
update
Aslemammad 991e57b
Merge branch 'main' into chore/pass-stream-to-parent
dai-shi 8bd80f3
Merge branch 'main' into chore/pass-stream-to-parent
dai-shi 204a34e
avoid non null assertion
dai-shi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
How can we assure that it's not undefined?
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.
To be honest, I thought about this, and I could not find a solution, it required so many types gymnastics which I then could not get it right. Let me know if you have an idea.
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.
Ah, yeah, it's optional. 204a34e should do for now. We can probably accept
undefined
so that we don't need such syntax.