An open API service indexing awesome lists of open source software.

https://github.com/mdibyo/react-library-starter


https://github.com/mdibyo/react-library-starter

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# react-library-starter

Small set of starter files to bootstrap your react library development process. Uses rollup

To get started:
```bash
git clone https://github.com/mDibyo/react-library-starter [your-library-name]
cd your-library-name

# Remove this repository and initialize your own repository
rm -rf .git
git init

yarn # or `npm install`
```

Now, you can start editing `src/index.js`. To build:
```bash
yarn build # or `npm build`
```

To publish,
Edit `package.json` and then,
```bash
yarn publish # or `npm publish`
```
As part of the publishing process, the build script will be run.