create-react-library
create-react-library copied to clipboard
CLI for creating reusable react libraries.
When I try to use with with `styled-components`, I get this error: > Error: 'typeOf' is not exported by node_modules/react-is/index.js, imported by node_modules/styled-components/dist/styled-components.browser.esm.js all the solutions are related to providing...
I created a project with typescript a few days back with crl. It has around 20 components, still it takes around 70 seconds to build on Macbook pro i7 16gb...
Hi guys, im trying to implement scss in create-react-library. `import css from 'rollup-plugin-css-only' export default { entry: 'entry.js', dest: 'bundle.js', plugins: [css({ output: 'bundle.css' })] }` this is my rollup.config.js...
I want to build modular libraries. This issue is a good description for my problem. [https://github.com/transitive-bullshit/create-react-library/issues/63](url) Unfortunately it was ended because v3 changes CRL . Does anyone have a current...
`You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders` I'm getting this error in few other places,...
I know you can publish to npm and then add the module as a dependency on a project but what if I don't want to publish the module? Can I...
I am writing a React package which is an HOC: ```jsx const HOC = () => { return class extends Component { constructor(props) { super(props) this.state = {test: false} }...
I try to change package name from `test-lib` into `@fateriddle/test-lib` example: ```js // App.js import { ExampleComponent } from '@fateriddle/test-lib' // package.json "dependencies": { ... "@fateriddle/test-lib": "link:.." }, ``` src...
Hi guys, First thanks for this awesome tool but I have one question. Where is the link to documentation? You mentioned in the README file that this tool have a...