mnlbox

Results 55 comments of mnlbox
trafficstars

Wooooo @imolorhe it's very beautiful. Thanks

Any news from this feature? I also think sending a lot of separate request to Hasura only to get the relationships data is not a performant way for most scenario....

Thanks @manasag :+1: Any plan for adding this feature to the community edition of Hasura also?

@BenHizak They also have some work about this but it's not finished yet: https://github.com/hasura/graphql-engine/pull/799 I think if someone from voyager community join that PR we can see this integration soon....

Maybe we can use https://github.com/Anidetrix/rollup-plugin-styles for both single bundle and multi bundle. I think using the same package for both branches is better approach :wink:

@HarveyD Thanks, it's worked. Just one question: I tried to add a new component exactly the same as `TestComponent` called `TestComponentNew` and using code-splitting now. But the bundle size for...

@HarveyD I added there. I don't know why but this config didin't work for me because when I add `preserveModules: true,` my build is like this: ``` ├── index.d.ts ├──...

@HarveyD I applied all of your changes (remove `@rollup/plugin-node-resolve` as you did in this commit https://github.com/HarveyD/react-component-library/commit/85418202282510d68b79db96b96ca4aea2057dc3) but my output folder structure still is messy like bellow: ``` . ├── node_modules...

Also when I want to use this component library in a react app based on create-react-app I gave a lot of error like this: ``` import { Button } from...

@HarveyD My issue fixed after install and add this module to rollup config: https://github.com/stevenbenisek/rollup-plugin-auto-external Now rollup didn't create `node-modules` folder in my output. Maybe you can also check it and...