You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @katmai7. Thanks for this project. I also set up the rollup-plugin-multi-entry plugin so that I can just pull all the .re files from my src/ dir. I'm running into an issue though... b/c all ReasonReact components are using the same let bindings for component, make, and default. Here are the errors.
rollup-plugin-multi-entry:entry-point re-exports 'component' from both src/Button.re and src/Component.re (will be ignored)
rollup-plugin-multi-entry:entry-point re-exports 'make' from both src/Button.re and src/Component.re (will be ignored)
rollup-plugin-multi-entry:entry-point re-exports '$$default' from both src/Button.re and src/Component.re (will be ignored)
Do you have a suggestion around this? My end goal is for anyone who includes this package can simply import { Button } from 'package-name'.
The text was updated successfully, but these errors were encountered:
Hi @katmai7. Thanks for this project. I also set up the
rollup-plugin-multi-entry
plugin so that I can just pull all the.re
files from mysrc/
dir. I'm running into an issue though... b/c all ReasonReact components are using the same let bindings forcomponent
,make
, anddefault
. Here are the errors.Do you have a suggestion around this? My end goal is for anyone who includes this package can simply
import { Button } from 'package-name'
.The text was updated successfully, but these errors were encountered: