Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 669 Bytes

CONTRIBUTING.md

File metadata and controls

46 lines (35 loc) · 669 Bytes

Working on MasterPassX

Install yarn. MasterPassX makes use of yarn's workspaces.

  1. Clone project, cd into it.
  2. Run yarn in the root directory of the project. This will get all dependencies for all sub-modules (web, cli, core).
  3. Code!

Web

cd web

Run development mode:

yarn watch

Run tests:

yarn test

Build to build:

yarn build

CLI

cd cli

Build & run:

yarn build-start <args>

Build to dist:

yarn build

Committing

Before committing, run yarn prettier (in the root or in any submodules) to format the files with Prettier.