Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 744 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (33 loc) · 744 Bytes

Contributing to the Cape SDK for JavaScript

Table of Contents
  1. Setup and Testing

Setup and Testing

This project uses monorepos to manage all the packages.

  1. Make sure you have yarn installed by running:
    yarn --version
    If not, please refer to the yarn installation guide.
  2. Clone the repo
    git clone https://github.com/capeprivacy/cape-js.git
  3. Install packages
    yarn
  4. Build the project
    yarn build
  5. Run the tests
    yarn test

(back to top)