Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 900 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (10 loc) · 900 Bytes

Contributing Guide

After forking the repository, run the following commands to get started:

  1. Ensure you have Node.js and pnpm installed. To install pnpm run npm i -g pnpm.
  2. Install dependencies: pnpm i
  3. Start the project in development mode: pnpm start

A few notes:

  • It's recommended to use debugger for debugging. VSCode has a great debugger built-in. If debugger is slow, you can use --no-sources flag that would allow browser to speedup .map file parsing.
  • Some data are cached between restarts. If you see something doesn't work after upgrading dependencies, try to clear the by simply removing the dist folder.
  • The same folder dist is used for both development and production builds, so be careful when deploying the project.
  • Use start-prod script to start the project in production mode after running build script to build the project.