-
Notifications
You must be signed in to change notification settings - Fork 21
Angular 9 #1355
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
Comments
@ReazerDev there is no official support for Angular 9 and Ivy (so far). But you could use it by fixing the above import and using the following version of
and fixing the above import (directly in the source code in node_modules/nativescript-ui-listview) replace The ivy tag of |
Something familliar is going on here too...
|
did you managed to solve this ? |
Hello Team ,
|
Hola, hay alguna solución para este problema mencionado?
|
@NickIliev Can you explain me more? I'm new in NativeScript with Angular 9 ERROR in The target entry-point "listview-directives" has missing dependencies:
Thanks |
Hey @susymercado and other: OR simply change your ngcc.config.js to: (a copy and replace your existing ngcc.config.js file in the root directory) |
@DevKitu I replaced the file, this is the new error. Thanks ERROR in ../node_modules/nativescript-ui-listview/ivy_ngcc/angular/listview-directives.js |
So the ./.. missing dependency issue is in node_modules package. For example, there is node_modules/nativescript-ui-sidedrawer/angular/side-drawer-directives.js and it contains statements such as require("./..") that appears to be correct Also there is a node_modules/nativescript-ui-sidedrawer/ivy_ngcc/angular/side-drawer-directives.js that is one level deeper. in that case require("./../..") should be placed instead of require("./..") statements. This path mismatch causes the issue In order to temporarily work around the issue I use https://www.npmjs.com/package/patch-package and fix the mistakes directly in node_modules until the lib gets fixed by the maintainers Hope this helps |
Is there any update on this issue? Currently facing this in ng 10 upgrade where there is no ngcc.config |
@bizzfs can you share your patch file? |
Hi, is there a version for Angular 9 in the works?
I get
when I'm trying to build my Project using Angular 9
The text was updated successfully, but these errors were encountered: