Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/guide/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ After cloning the repo, run:
$ pnpm i # install the dependencies of the project
```

:::tip ⚠️

Since `electron` is used in the project, if your network environment is unstable, you may be unable to install dependencies.
You can use the following command to set up the mirror, and run `pnpm i` again to install the dependencies.

```bash
pnpm config set ELECTRON_MIRROR https://npmmirror.com/mirrors/electron/
```

:::

## Git Hooks

The project uses [simple-git-hooks](https://github.com/toplenboren/simple-git-hooks) to enforce the following on each commit:
Expand Down