Matthias Zaunseder

Results 9 comments of Matthias Zaunseder

@postmodernistx thanks, with your comment I got it fixed! In my case HTML files were the troublemakers and I could fix it by adding this to `jest.config.js`: ```js coveragePathIgnorePatterns: ['/node_modules/',...

You can use the 9 instead of 0 for the optional numbers. So maybe your mask could look like that: `SS00 AAAA 0000 0000 0000 9999 9999 9999 99`

I think you have the same problem as [GraphCMS](https://graphcms.com/) had. They also have a GraphQL API and they built a source plugin which doesn't look complicated: https://github.com/GraphCMS/gatsby-source-graphcms/tree/master/src It looks like...

In the gatsby docs for the "Node Interface" it says _Gatsby automatically infers the structure of your site’s nodes and creates a GraphQL schema which you can then query from...

I think @magicspon already meant the native schema stitching with the official [gatsby-source-graphql](https://www.npmjs.com/package/gatsby-source-graphql/v/2.0.0-rc.6) plugin. The old [gatsby-source-graphql](https://www.npmjs.com/package/@wyze/gatsby-source-graphql) plugin from @wyze used graphql files for the queries. It's a bit confusing...

This was working for me in a TypeScript project when I put it before importing JSZip: ```ts import buffer from 'node:buffer'; (globalThis as any).Blob = buffer.Blob; ```

Styliner is better for handling media queries. Because Juice will ignore them. Styliner is preserving them in style tags, so that they are used by email clients who don't throw...

Hi, did you already check if Cypress is browsing storybook with HTTPS enabled? Or in the Chrome Devtools of Cypress could you check if service worker are possible? MSW is...

Unfortunately I don't know if you can enable HTTPS in Cypress, but maybe it is not needed because if I just google for MSW and Cypress the setup is quite...