Vlady Veselinov

Results 51 comments of Vlady Veselinov

hey y'all, what if you have more than one test script, for example ```json { "scripts": { "test": "jest -c jest.config.unit.js", "itest": "jest -c jest.config.integration.js", } } ```

What does downcast do?

I would love to find out more about this. I've been trying to upload a file for a couple of weeks but no luck.

I have the same problem, getting some 404 errors when I tried to fetch a random vehicle/starship id into the url: /vehicle/id. Awesome API though ;)

Hi y'all, what about generating imperative .sql migrations with code? This way only the generated .sql needs to be correct and it can use the existing migration history system.

I'm having similar issues when trying to blend the [typescript worker template](https://github.com/cloudflare/worker-typescript-template) with this one. It seems like Apollo is trying to use node modules, I thought the Apollo Cloudflare...

Hi @codewithkristian, I improvised a riff on the template, what do you think? https://github.com/vladinator1000/cloudflare-workers-ts-graphql - smaller bundle size (swapped [GraphQL servers](https://benzene.vercel.app/)) - fast builds - TypeScript support. I'm interested in...

This is how my bundle looks like with "module": "esnext"` in the TS config. That's 1.5 MiB of dependencies. ![image](https://user-images.githubusercontent.com/1226564/82755005-cad1f980-9dc8-11ea-92c1-9cc38b78b05a.png) When I use [bundle optimize helper](https://webpack.jakoblind.no/optimize/) it says a bunch...

you need to add a `cookieManager.d.ts` file to your project ```ts declare module "react-native-cookies" { function clearAll(useWebKit = false): void function get(url: string, useWebKit = false): string function set(cookie: string,...