Ketec

Results 42 comments of Ketec

Guess this can be considered deprecated and the repository should be marked as such. It is now incompatible with the latest Angular. If there has still been no response in...

So I see it's merged now. But no new release version - I assume this still needs manual builds/tagging/promotion? the latest is 7.1.1 from January. @jimjag any updates on the...

The peerDep got set to 15+ so it's not available for 14 (can locally force it to install but will not work for cicd/prod builds like that). And it still...

The playground? Perhaps because it's not consuming akita from installed distribution but locally in the nx workspace? I'll need to set up and test with a separate clean project to...

skipLibCheck also disables checking even for your own libraries or any declaration fields inside the project. You can't specify where it applies. Hiding errors and reducing code quality and adding...

I simply added the keycloak-js to the skip array you pass to the mfe webpack config (assuming you use the arhitects shareAll()). Don't share keycloak-js.

Was just looking into the viability of web/shared workers In a data-processing-heavy enterprise solution. It is not a mono repository - but rather libraries are used as micro frontends in...

It is also important for dynamic routes, especially with standalone components where you no longer have modules for each component. I even tried with ENVIRONMENT_INITIALIZER + router.resetConfig (but it gives...

The dynamic routes are needed for the lazy loaded child route (where previously that component module could use ROUTES token to map new children) but as mentioned in the closed...

ENVIRONMENT_INITIALIZER is not available in component providers. It is there in the route.ts (for the component), but you can't store local variables there. It wouldn't be at the initial bootstrap...