Jakub Wadas

Results 21 comments of Jakub Wadas

I just wanted to mention that it would be great if that feature would somehow fit into esbuild plugin API. For example `build.onResolve` could optionally return custom chunk name -...

I'm just dealing with the same issue. It seems the issue is a mismatch between `Interpolation` from emotion 11 `@emotion/react` and `InterpolationWithTheme` from emotion 10 `@emotion/core` that also provides globals...

> You mean you edit the installed packages within node_modules by hand? That won't work for me because CI/CD builds won't do that and it'll fail during build due to...

I just wanted to leave few ideas around, since this thread seems like a good opportunity. There's a bit of issue with typing nested config variables (using `@types/convict`), because of...

@MichalLytek I'm kinda not sure there is a need for lib decorator when small custom function suffice. But I'm coming from FP, and trying to get used to DI so...

Just had an issue with that. My workaround: a) Inject `Container` to container somewhere ```ts import { Container } from 'inversify' const container = new container({...}) container.bind(Container).toConstantValue(container) ``` b) Implement...

Just stumbled across this issue, my case is that my schema names across project are not by any means unique, and there is few completely separate domains. Btw. sorry for...

@GantMan This project is awesome - thanks for it! 🎉 Without CLI like CodeSandbox is truly quite tedious so I thought I will help with few examples: - setState: https://snack.expo.io/@vadistic/basicsetstateexample...

@tkvw As Proof of Concept I extracted some warthog logic and packed it as NestJS module: https://github.com/vadistic/nestjs-warthog It works quite nice - see tests, but I have one big shizzle....

Btw. I found okeyish temp solution. You can compile your lambdas directly on Now with "prepare/preinstall" script. Like `"preinstall": "yarn build"` & pointing routes to compiled code. It also fixes...