-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dist is full example #3
Comments
I have the same issue, when I try to use it via:
Can you please provide a solution for that. I read the article from dvdplm but I cant get it to work. Kind Regards. |
Yeah, I'm still trying to figure this one out. This is the first react/npm module I've released, so I'm a bit new to it. |
Could this issue be solved by changing the |
Add dynamic registration
Hi there!
I'm looking to using this in our project and I'm wondering what the best way to add it to our project is. We're excluding
node_modules/
from the JSX parsing for performance (don't want to pipe all that through Babel), which means thatvar Selectable = require("react-selectable");
complains about unparsed JSX.I tried doing
var Selectable = require("../../../../node_modules/react-selectable/dist/bundle.js");
but that pulls in the whole example app.Do you think it'd be a good idea to provide a ready built JS file for people to use?
Thanks!
UPDATE: this seems like a good resource on this matter: http://chadly.net/2015/04/publishing-react-to-npm/
The text was updated successfully, but these errors were encountered: