react-selectable icon indicating copy to clipboard operation
react-selectable copied to clipboard

Dist is full example

Open dvdplm opened this issue 10 years ago • 3 comments

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 that var 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/

dvdplm avatar Dec 11 '15 11:12 dvdplm

I have the same issue, when I try to use it via:

import Selectable from 'react-selectable';

Can you please provide a solution for that. I read the article from dvdplm but I cant get it to work.

Kind Regards.

lrecknagel avatar Jan 07 '16 10:01 lrecknagel

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.

unclecheese avatar Jan 07 '16 20:01 unclecheese

Could this issue be solved by changing the package.json "main": "src/react-selectable.js" to point to "dist/react-selectable.js" instead?

unclecheese avatar Feb 02 '16 23:02 unclecheese