Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 566 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (17 loc) · 566 Bytes

Setting Up a Development Environment

  1. Install pnpm

  2. Run the following commands to set up the development environment.

pnpm install

Making sure your changes are working

There are a number of automated checks which run on GitHub Actions when a pull request is created. You can run those checks on your own locally to make sure that your changes would not break the CI build.

1. Check the code for JavaScript style violations

pnpm lint

2. Ensure the library can compile successfully

pnpm build