create-react-library icon indicating copy to clipboard operation
create-react-library copied to clipboard

CLI for creating reusable react libraries.

Results 108 create-react-library issues
Sort by recently updated
recently updated
newest added

**Describe the bug** @rollup/plugin-alias@^3.0.1' is not in the npm registry.\n" **System** Node.js version: v12.18.3 NPM version: v12.18.3 Operating system: Windows 10 (1909) **Steps to reproduce** (Write your steps here:) 1....

I tried to create a simple lib using npx (should be last version) with the following settings : - Package Name react-quiz - Package Description React quiz - Author's GitHub...

Object spread not work properly on build, but work fine on watch mode. snippet from my redux-saga function ``` function* loginByEmailWorker(action) { try { const response = yield call(loginByPassword, ...action.payload);...

If we try typescript boilerplate then got following error: I have dir structure as following: ``` components Button index.tsx types.d.ts ``` types.d.ts ``` declare interface ButtonProps { name?: string }...

When importing components from my library, I have to import the entire package. Is this the normal behaviour create-react-library, an issue with my code, or a bug? This works: ```js...

As was reading and having same problem on issue #243 , then I read comment from [saborrie](https://github.com/transitive-bullshit/create-react-library/issues/243#issuecomment-653525598). Decided to add ``` --jsxFragment React.Fragment ``` to scripts

The npm package [email protected] is deprecated, so when I try to create new app it fails. Please hopefully to fix this issue ASAP

## Feature Request Have the choice of platform you want to create a library for. There isn't much documentation on how to create a react-native-library.

# How to replicate bug: ``` npm install -g create-react-library create-react-library cd && npm start ``` **New Console** ``` cd example/ npm start ``` ### Output: ``` Cannot find file:...

1.added the umd in the package.json "scripts": { "build": "microbundle-crl --no-compress --format modern,cjs,umd", "start": "microbundle-crl watch --no-compress --format modern,cjs", "prepare": "run-s build", 2. included in the html 3. got the...