-
Notifications
You must be signed in to change notification settings - Fork 15
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
Types of property 'schedule' are incompatible #27
Comments
Ah interesting issue, hah that is a coincidence as I was the one to add that enum to RxJS in the first place: https://github.com/ReactiveX/rxjs/pull/4405/files Funny that would come back to bite me. I'll fix this shortly |
Thanks for the quick response! That's a pretty funny coincidence for sure. Just so you know, there's another similar reference in |
🎉 This issue has been resolved in version 3.2.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This is an awesome project and is making my life a lot easier. Thanks for putting it together.
I'm getting this issue when I try to use fromWorker in a project using Nx:
After some googling and testing, it seems like the issue is the same as this issue in the rxjs repo. In
run-worker.ts
, you have:which is apparently what is throwing the error. I copied the code over to my project and replaced that import with this enum (which is what was being imported from the rxjs library):
After that, it works perfectly. I can open a pull request and make the change myself if you want. Or, it's just replacing that one import that fixed my particular issue if you want to make the change.
Keep up the good work!
The text was updated successfully, but these errors were encountered: