Jiri Spac
Jiri Spac
I had a config like this on one react-native project: ``` documents: ['**/*.gql'] ``` this ran like 40 seconds when trying to generate. Why? Because it is traversing whole node_modules....
here: https://github.com/apollographql/apollo-client/blob/451482ff85d93e1738df31007f3c2a7f0fbe8cff/packages/apollo-client/src/core/ObservableQuery.ts#L262 there is a call which tries to compare two objects. The problem I get when I switch to hermes from `apollo-cache-inmemory` is that these objects are circular. Proof:...
the previous example was missing `fontFamily` prop
We have multiple schemas in a single project, so we need to be able to register multiple schemas. Is this possible?
I recently made this tool: https://github.com/capaj/contrib-locs and seeing that you only support github/gitlab with this CLI, it should be possible to add support for a general git repo. Not sure...
**Is your feature request related to a problem? Please describe.** I just wanted to render the carousel on the server **Describe the solution you'd like** that when rendered in SSR...
ideally I'd like to do just: ```tsx import { AddToCalendarButton } from 'react-add-to-calendar-button' ``` Currently it requires a bit more work.
**Is your feature request related to a problem? Please describe.** Currently generated files often have imports that are not used anywhere  **Describe the solution you'd like** Unused import would...
When parsing of the file fails, it should at least output the name of the file that cannot be parsed
I get output like this when running in a folder: ``` lebab --replace "lib/**/*.js" --transform commonjs /home/capaj/.nvm/versions/node/v14.17.4/lib/node_modules/lebab/node_modules/espree/lib/espree.js:195 throw err; ^ SyntaxError: Unexpected token . at Espree.raise (/home/capaj/.nvm/versions/node/v14.17.4/lib/node_modules/lebab/node_modules/espree/lib/espree.js:190:25) at Espree.unexpected (/home/capaj/.nvm/versions/node/v14.17.4/lib/node_modules/lebab/node_modules/espree/lib/espree.js:235:18)...
In one of the files generated I have: ```ts import { Gender } from "@prisma/client" export const _UserModel = z.object({ id: z.string(), gender: z.nativeEnum(Gender), }) ``` this causes a problem...