Gerard Brull

Results 17 comments of Gerard Brull

I tried to remove `RPZopaCheckSession` and then nothing gets served from the SW :(

Maybe it's not the solution you are looking for as I agree it should work. We are [refactoring our code base](https://github.com/zopaUK/react-components/pull/815) in our UI library to stop using `React.FC` after...

In our case, we don't need static props. Regarding preact, we don't use it either. What I see after migrating to my approach is: 1. One less 3rd party interface...

For those who need a quick workaround (like me). This seems to work: https://community.netlify.com/t/using-pnpm-and-pnpm-workspaces/2759

I haven't tried it but provably you can do something like this: ```js const fs = require('fs'); const parser = require('xml2json'); const urls = []; fs.readFile('./sitemap.xml', function (err, data) {...

Looks like this repo is abandoned...

I think it will be simple to use one of those base tsconfig files. There's one for vite! https://github.com/tsconfig/bases/tree/main/bases

I saw this tweet the other day by @jaredpalmer > We’ll likely be either merging tsdx or an equivalent into turbo. I’m not a huge fan of plugins, so it...

+1 Do you know if it's possible to do it with this library? I got really useful help in another library which might be useful for you also. https://github.com/jochen-schweizer/express-prom-bundle/issues/25

I have the same problem. I think this line is wrong: ```ts // /types/index.d.ts declare function express_prom_bundle(opts: express_prom_bundle.Opts): RequestHandler; ``` It should be something like: ```ts declare function express_prom_bundle(opts: express_prom_bundle.Opts):...