-
Notifications
You must be signed in to change notification settings - Fork 175
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
Doesn't work on Angular 10 #656
Comments
I've added a fix & opened a pull req: #657 |
Unfortunately the author(s) doesn't seem to keep mantaining the project. There are pull request opened from 2018 :/. |
Dito ;) but at least i tried |
Same here, would be nice that it gets fixed but I guess that won't happen.. |
Can you share that by any chance? :-) @vanderdill |
@rollwhistler You can install dependencies by defining them by their github.com path.
|
Thanks @Schinkentanz, I cannot just fork it myself since I would need to implement the fixes, which I don't know how to right now :-), I was hoping for a working updated version of this. Does yours work with Angular 10? I'll give it a try, thank you! |
😄 |
src/app/shared/sdk/services/custom/logger.service.ts:51:13 - error TS2339: Property 'profileEnd' does not exist on type 'Console'. Will this go away if I update to angular 11? :-D. Ok, it was my fault, I got old type definitons on my package.json, I updated to "@types/node": "^10.17.55" |
Look at Loopback 4 documentation Building an Angular Application from OpenAPI Specification which shows how to generate an OpenAPI spec JSON file and then generate models for the Angular application. |
What type of issue are you creating?
What version of this module are you using?
Please add a description for your issue:
Angular 10 now requires template on ModuleWithProviders class. So, the following line on index.ts:
}): ModuleWithProviders {
showld be:
}): ModuleWithProviders<SDKBrowserModule> {
The text was updated successfully, but these errors were encountered: