-
Notifications
You must be signed in to change notification settings - Fork 47
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
Angular 6 with rxjs 6.0.0 Error #67
Comments
You can only go full Angular 6 if you do not have dependencies to Check it with this: One of the implicit dependencies of Angular 6 is I use You can remove this package as soon as your dependent packages - which use See https://update.angular.io/, the last point mentions:
In the long term, Good luck! |
Yep! Agree with that :) |
Thanks! It works after install rxjs-compat. 👍 |
@TwanoO67 The effort is not so high. You cannot support both code bases in source code, Angular 6 on the one hand and Angular 5 or 4 on the other. The reason is that you either import (Angular 6+) import { Subject } from 'rxjs'; or (Angular 4, 5, 6, ... ) import { Subject } from 'rxjs/Subject'; For the second case, you need |
Hi @chinkan how you did to upgrade these packets?
I'm with some problems, I'm trying to use the ngx-admin-lte in my project but I'm receiving an error from ToasterService:
I Believe that upgrading these two packets will solve my problem. I'm confusing about that, the description of the project is "Admin LTE for Angular4,5,6", but seems that using angular 6 we have a lot of dependency versions problems... |
Hi how you did to upgrade these packets? angular2-toaster |
Hi,
I just use angluar-cli create a new angular 6 project and try to add ngx-admin-lte in it.
However, when I try to run ng serve it show error
I then found out the issue is that ngx-translate 8.0.0 is not supported to rxjs 6.0.0, it need to update the ngx-translate version to 10.0.0. (References: ngx-translate/core#816)
Next I found out the angular2-toaster also need to update to support rxjs 6. So I did update the angular2-toaster 6.0.0
Unfortunately, I still got the error from ngx-admin-lte:
It seems to be the ngx-admin-lte still using the ngx-translate 8.0.0. How can I fix it? Thanks :)
The text was updated successfully, but these errors were encountered: