Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The build script has been failing since `@metamask/post-message-stream` was updated. This appears to be caused by the addition of modules to that library that were meant to be used in the context of a Web Worker. They referenced an import that only exists in a Web Worker context (`worker_threads`). They were included in the main entrypoint for the package, so browserify tried to walk the dependency graph and blew up on that line. The import has been updated to reference just the `WindowPostMessageStream` module that is used, rather than the main package entrypoint.
- Loading branch information