Bruno Nascimento

Results 8 comments of Bruno Nascimento

I'm using a Yarn v2 Monorepo and I've found out that the problem was happening every-time I imported a Module created on another package. I have a package/workspace for the...

@vanities Would you have the PR number/link in hand?

Just wrote a workaround on this problem for you guys on Yarn Workspaces: 1. Create a "buildReferences.js" file at the root of the package you want to build the references...

At the Block level we can reuse "atoms" or smaller components across Blocks. For example, we have a `` component which has a `Link` GraphQL Type associated to it. Then...

Yes, I did try ```ìndex: true``` and the error goes away. It does not create any index or constraint on Neo4j though, only when ```ìndexed: true``` is set.

Was able to solve this adding `".next"` to the `"exclude"` arrray on `tsconfig.json`. ```json { "compilerOptions": { "target": "es5", "lib": [ "dom", "dom.iterable", "esnext" ], "allowJs": true, "skipLibCheck": true, "strict":...

Also noticed that, even by moving things out of the `src` folder, Fast Refresh works for when adding or updating CSS properties but not when removing (needing a full page...

Couldn't we have a suffix on the variable name that would prevent its transformation into a className? For example: ```typescript const heading1__fragment = css` background: red; ` ```