Momo Kornher

Results 484 comments of Momo Kornher

> - Don't enforce "unused" in TS ("dev" mode as above, but all of the time) > - Use eslint "error" for "unused" rules, preventing code from reaching production, but...

Update: I found the best workaround for this was to simply not use the superchain image: https://github.com/mrgrain/streamlink-serverless/blob/main/projenrc/WorkflowNoDockerPatch.ts Additionally requires Node.js to be set-up, but that's okay. **Why does this work?**...

> Hello. Any further traction on this issue? I'm getting the similar thing where projen new is searching for a .jsii module that doesn't exist `Error: Cannot find module '@types/node/.jsii'`...

I'm taking that back! You can do everything with it that we can with projen. I came across this while researching ideas for how to autodetct package managers. So re-opening...

@tmokmss Apologies for the delay. Let's wrap up the open questions: > 1. what API will look like? ([ref](https://github.com/aws/aws-cdk/pull/21820#issuecomment-1234388771)) The API for `logRetention` is a huge mess and desperately needs...

@tmokmss Thanks for the explanation. I understand the problem now. I think the issue comes down to creating a false equality between the `LogRetention` custom resource and the `LogGroup` that...

Been thinking about this all morning. It's fairly easy to implement a variation of the fix that S3's `autoDeleteObjects` has. But only if the parent resource (here: a Lambda Function)...

@tmokmss Thanks again for this PR. I'm drafting this for now. We have to solve the deletion issue first. Same as here: https://github.com/aws/aws-cdk/pull/26049 I have some ideas for it though.

I'm planning to create a generic `DependentLogGroup` (or similar) that actually supports all log group properties. To avoid the deletion of the log group, we need to tag the parent...