Skip to content
Open
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ Before getting started, you'll want to install:
- Node.js
- pnpm (run `corepack enable`)

### Windows notes

If `pnpm` fails in PowerShell with `running scripts is disabled` (pnpm.ps1):
- Run: `Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned`
- Close and reopen Powershell, then try `pnpm` again.

If native modules fail to build (node-gyp errors, missing `cl` or `msbuild`):
- Install "Build Tools for Visual Studio 2022" with "Desktop development with C++" (MSVC v143 and Windows SDK).
- Run commands from "x64 Native Tools Command Prompt for VS 2022" (or "Developer Powershell for VS 2022") so `cl.exe` and `msbuild.exe` are on PATH.

Then proceed to setup:

```bash
Expand Down