Fabio Berger b8241c0f80 Merge branch 'development' into dev-dropdown
* development: (120 commits)
  Exit with non-error code at end of publishRelease
  Publish
  Updated CHANGELOGS
  Fix prettier
  Update changelog files for RC packages
  Skip doc generation for local publishes since we test this in a separate CI test
  Fix typo
  Use absolute path
  Run yarn a second time if the first fails
  Try relative to root dir
  Fix command
  Move md files to lib folder during build
  Change exit code to failure
  Fix sra-spec `main` and `types` in package.json
  Actual relative path
  Try relative path
  Issue #1025 BlockParam unroll
  Fix command
  Move md files to lib folder during build
  Fix sra-spec `main` and `types` in package.json
  ...
2018-08-27 15:28:57 +01:00
..
2018-08-27 12:30:30 +01:00
2018-03-27 16:49:19 +01:00
2018-08-27 14:47:56 +01:00
2018-08-27 14:47:56 +01:00
2018-08-27 14:48:24 +01:00
2018-03-13 16:36:05 +01:00
2018-05-16 14:59:10 +02:00

@0xproject/react-shared

Contains React components & frontend types/utils shared between 0x projects.

Installation

yarn add @0xproject/react-shared

If your project is in TypeScript, add the following to your tsconfig.json:

"compilerOptions": {
    "typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"],
}

Contributing

We welcome improvements and fixes from the wider community! To report bugs within this package, please create an issue in this repository.

Please read our contribution guidelines before getting started.

Install dependencies

If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them:

yarn config set workspaces-experimental true

Then install dependencies

yarn install

Build

To build this package and all other monorepo packages that it depends on, run the following from the monorepo root directory:

PKG=@0xproject/react-shared yarn build

Or continuously rebuild on change:

PKG=@0xproject/react-shared yarn watch

Clean

yarn clean

Lint

yarn lint