Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 663 Bytes

contributing.md

File metadata and controls

40 lines (24 loc) · 663 Bytes

Contributing to Typora Parser

Developing

To develop locally:

  1. Fork this repository to your own GitHub account and then clone it to your local device.

  2. Create a new branch:

    git checkout -b MY_BRANCH_NAME
  3. This project uses pnpm as package manager, so you need pnpm:

    npm install -g pnpm
  4. Install the dependencies with:

    pnpm i
  5. Start typescript compiler:

    pnpm watch
  6. Keep the process from step 5 running, run the following to start src/devmain.ts.

    pnpm dev