Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 686 Bytes

contributing.md

File metadata and controls

42 lines (27 loc) · 686 Bytes

Contributing

Prerequisites

To install the development dependencies, you will at least need Node 8 installed.

Installation

We use Yarn as our package manager. It will install all dev dependencies and the dependencies in the actual packages.

yarn

Building

For building all of the packages run:

yarn build

Lint & Formatting & Typechecking

To lint, format, and type check the project run the following commands:

yarn lint
yarn format
yarn typecheck

Run tests

Using karma (real browsers will get launched).

Notice: When you change the source files of packages, you will need to rebuild the project.

yarn test