Reason starter kit for creating react library.
Clone this repository and install its dependencies:
git clone https://github.com/katmai7/reason-react-rollup-starter-kit.git
cd reason-react-rollup-starter-kit
yarn install
yarn dev
build lib in dev modeyarn build
build lib for productionyarn example
run example serveryarn test
run testsyarn clean
cleaning project
Running the following command will open your default browser to example/index.html
.
Any modifications inside ./src
trigger a browser refresh.
yarn dev
Running the following command will build ./src/index.re
to ./dist/your_lib_name.(cjs|es6|umd).js
.
yarn build
The example app is running with the webpack as one of the main builders for web apps.
Note that example app needs to build ./src/index.re
file, so before running the example app, run yarn dev
.
yarn dev
yarn example
Running the following command will run tests with Jest framework.
yarn test
Running the following command will clean project folders that are created by bucklescript and dist/temp/(folders you don't need to commit) folders.
yarn clean
MIT