diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-08 23:58:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 23:58:16 +0800 |
commit | 40ca846cdc44efa98ab9db11c16cff301020f11f (patch) | |
tree | 2fdaee2607881c657d2ccf71ddc6d407ed522aca /packages/react-shared/README.md | |
parent | 03902b0b26fe443705dde20c42e78e1cb4bd3c4b (diff) | |
parent | 2a24f6e2ea9bc4f879c9dff2a60c92dec0e1cc48 (diff) | |
download | dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.gz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.bz2 dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.lz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.xz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.zst dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.zip |
Merge pull request #438 from 0xProject/extractDocs
Extract Docs Template To Separate Package
Diffstat (limited to 'packages/react-shared/README.md')
-rw-r--r-- | packages/react-shared/README.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/packages/react-shared/README.md b/packages/react-shared/README.md new file mode 100644 index 000000000..da7ff83af --- /dev/null +++ b/packages/react-shared/README.md @@ -0,0 +1,47 @@ +## @0xproject/react-shared + +Contains React components & frontend types/utils shared between 0x projects. + +## Installation + +```bash +yarn add @0xproject/react-shared +``` + +## Contributing + +We strongly encourage that the community help us make improvements and determine the future direction of the protocol. To report bugs within this package, please create an issue in this repository. + +Please read our [contribution guidelines](../../CONTRIBUTING.md) before getting started. + +### Install Dependencies + +If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them: + +```bash +yarn config set workspaces-experimental true +``` + +Then install dependencies + +```bash +yarn install +``` + +### Build + +```bash +yarn build +``` + +### Lint + +```bash +yarn lint +``` + +### Run Tests + +```bash +yarn test +``` |