Marvin Stürcke

Results 7 comments of Marvin Stürcke

Just use `__APOLLO_DEVTOOLS_GLOBAL_HOOK__` instead. I was searching the library for a switch and finally found it in line 209 in the [ApolloClient.ts](https://github.com/apollographql/apollo-client/blob/main/src/core/ApolloClient.ts), wich checks for `!(window as any).__APOLLO_DEVTOOLS_GLOBAL_HOOK__` I added...

I installed the 1.6.2 version and it works quite well incl. restarting Stream Deck. But all bridges are still lost after restarting the computer. The store says, that the current...

@tiptronic Okay, I'll wait for the release in the store and will give feedback then

Is there a workaround? Is it possible to force Renovate through the configuration to use bun instead of npm?

If you want to keep an exact amount of caches, you can use my example: ```shell export CACHES_TO_KEEP=2 ls -At -1 -d "$PWD/node_modules/.cache/turbo/"* | tail -n "+$(($CACHES_TO_KEEP*2+1))" | xargs -r...

If you're using [Bun](https://bun.sh/), just replace `app` value in `cdktf.json` with `"bun main.ts"`. Example: ```json { ... "app": "bun main.ts", ... } ```

I've created a workflow, that runs whenever dependabot creates a pull request. It will execute `bun install` and commits the `bun.lockb` file. The original commit of dependabot will be overwritten....