diff --git a/README.md b/README.md index 1d5c3b5..2295c7b 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ JungleSelect's controls are wrapped in a `.jungle-select-controls` tag. It conta The list container has the `.jungle-select-list` class, groups have the `.jungle-select-group` class and items have the `.jungle-select-item` class. + ## Styling A default stylesheet is provided in the library at `dist/JungleSelect.css`. You can use it directly or write your own theme. @@ -136,6 +137,7 @@ A default stylesheet is provided in the library at `dist/JungleSelect.css`. You Our [documentation](https://wttj.github.io/react-jungle-select) contains examples to get started with React Jungle Select + ## Develop To run examples locally in a development server, clone this repo and run: @@ -148,6 +150,11 @@ yarn docs:dev Then open [`localhost:9090`](http://localhost:9090) in a browser. +## Tests + +`yarn test` + + ## Contributing 1. Create an issue and describe your idea diff --git a/package.json b/package.json index 74cf8d0..060c45e 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "react-jungle-select", - "version": "0.0.1", + "version": "0.1.0-alpha", "description": "React select and list component. Including search, mouse and keyboard support", "main": "dist/index.js", "repository": "https://github.com/WTTJ/react-jungle-select", "author": "klacointe ", "license": "MIT", "scripts": { - "test": "jest --notify --coverage test/*", + "test": "jest --notify test/*", "test:watch": "jest --notify --watch test/*", "clean": "rm -rf dist/*", "lint": "eslint src",