Results 101 comments of Jannik Buschke

I also felt the need of sharing code between projects while developing both. I tried npm link and creating symlinks by myself. Both had gotchas I couldn't really live with....

@iamnader CRA totally works with lerna (http://jannikbuschke.de/blog/monorepo-with-lerna-react-and-typescript/ if you are interested in a walkthrough with cra and a typescript/react module)

this repos master branch is probably ahead of the version you have installed. Check https://www.npmjs.com/package/formik-antd for the latest version. 2.1.0-beta.5 might solve your problem

If I am not mistaken the ant design component directly initiates an upload to a server. I imagine you would want to somehow "stage" some files, and then upload them...

In the ant design docs https://ant.design/components/upload/ there is an **Upload manually** example, with which it should be rather straight forward to implement this functionality. Im not sure if the file...

@Frank5000 I implemented an UploadFile component in my (undocumented, not yet releasable) glow library: https://github.com/jannikbuschke/glow/blob/master/core/web/src/files/upload-files.tsx#L31 There I use ant designs upload component to upload files to my backend. On successfull...

Hi @gromov-io , Can you share your setup? Maybe you can compare your config with https://github.com/jannikbuschke/cra-antd-x, where babel plugin should work.

I just noticed that it didnt yet fully work. I think I fixed it just now. This is the config: https://github.com/jannikbuschke/cra-antd-x/blob/master/config-overrides.js

@gromov-io can you verify if it now works?

Maybe try "style": "css" and "libraryDirectory":"es" for both imports (like here https://github.com/jannikbuschke/cra-antd-x/blob/master/config-overrides.js)