Thomas Schaffter

Results 206 comments of Thomas Schaffter

Moving the imports from `polyfills.ts` to `app.ts` solves the issue as suggested here by @LuisFlip. The Uglifier is not the issue (the issue is still there when commenting it in...

> Why not put the build.gradle under apps and meanwhile, add settings.gradle under apps to declare all your sub-modules? I'm relatively new to Gradle so not sure how this would...

Thanks @snjeza. I indeed forgot to commit the folder `gradle` in the commit I referenced earlier. However, I usually included this folder in my setup. To clarify, Java LS breaks...

This statement is shedding some light on the issue reported: >We will likely remove the getRouter function in a future Probot version altogether as it cannot be supported in serverless...

@ld210 Unplugging `@angular/compiler-cli` solved the error `EROFS: read-only filesystem, open '/node_modules/.ngcc_lock_file'`. See https://github.com/Sage-Bionetworks/challenge-registry/issues/755#issuecomment-1267094617 for more detailed information.

Hi, is there any update regarding the support of `3rd Party platforms (such as ESP32, pinoccio, etc.)`? Thanks for your contribution to this nice project!

I spent some time exploring the issue and came up with a solution. The issue stems from the fact that concurrent executions of Maven is not safe. For example, two...

Hi @tinesoft , Thanks to [your comment](https://github.com/tinesoft/nxrocks/issues/65#issuecomment-853077194), I was able to create a "@nxrocks/nx-spring-boot" library and import it in an app. I updated the `build` target of the lib with...

After giving it more thought, it's preferable to keep installing Maven packages to the default location (e.g. `~/.m2/repository`) to keep the environment as standard as possible. This means that the...

Hi @tinesoft I want to propose a different strategy for installing a library so that it can be imported in an app. The motivation is to enable the app to...