-
Notifications
You must be signed in to change notification settings - Fork 111
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
Avoid warning messages for Angular versions <6.0.0 #39
Comments
Hi! Great to hear that the I don't remember why I made it exactly |
Hi! Yes, it works perfectly but I didn't try it with lower Angular versions. Anyway, with Angular 5.x.x it works like a charm and it actually saved me a lot of time! Thank you for this awesome lib! 😍 Thank you for your reactivity! 💪 🤘 |
Thanks for the positive feedback! It's always good to hear it. It's the motivation that keeps me going :) |
For the Angular 4.x.x the build process throws the following error:
I've been able to run it on the 5.0.0 so for the current code the 5.x.x version should be minimal. And I've seen that angular@7 will be released soon with changes that should be transparent for the |
Other: The package works fine with `Angular@5` so we decided to lower a minimal version of Angular to `>=5.0.0`. Closes #39.
I installed ckeditor5-angular on my project running with Angular
5.2.11
.When I serve it, it echoes the following warning messages:
I saw that in the library's
package.json
there is:So this is responsible of the warning messages. Replacing it with:
will resolve this issue (tilde or caret won't match for both v5 and v6 Angular versions).
Maybe in the future you would like to create different tags to manage required versions of Angular. E.g: a v1 tag for Angular <6.0.0 and a v2 for Angular >= 6.0.0 ?
Actually the library works well as-is, but it would be nice to avoid theses warning messages. 😉
Cheers!
The text was updated successfully, but these errors were encountered: