Andrei Alecu
Andrei Alecu
`aws-cdk` currently uses `esbuild` to bundle code used for lambdas: https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-nodejs-readme.html Unfortunately, because of internal implementation details in `aws-cdk`, the esbuild nodejs API cannot be used directly. Ref: https://github.com/aws/aws-cdk/issues/13179#issuecomment-783219945 So...
I was looking into preloading a few locales so that async loading wouldn't be required (I'm using this in cordova so it wouldn't make much sense) and I came up...
**Is your feature request related to a problem? Please describe.** I'd like to define some scalars that are for example positive integers limited to values between 0 to 6 (for...
In loaders it is usually necessary to access the graphql execution context. As per NestJS documentation I attempted to do it like this: ```ts import { CONTEXT } from "@nestjs/graphql";...
The project I'm trying to use `nestjs-dataloader` in uses `import DataLoader from "dataloader";` syntax for imports, via the `esModuleInterop: true` flag in tsconfig.json This seems to conflict with the way...
It appears that when GQL Subscriptions are used, the data returned by dataloaders will remain stale for the duration of the subscription. I believe this happens because the context is...
I did a search in the repository and noticed this wasn't discussed yet. JPEG XL is in the final stages of standardization and it's looking incredible. There's a reference implementation...
**What version of Tailwind CSS IntelliSense are you using?** v0.7.1 **What version of Tailwind CSS are you using?** v2.2.17 **What package manager are you using?** yarn **What operating system are...
Ran into an issue when using yarn workspaces hoisting. Because the `module-alias` directory will be hoisted to the top level of the project, it will read the `package.json` from the...
Fixes #10478 Please provide enough information so that others can review your pull request: **Motivation** In my case I want to be able to achieve an effect similar to the...