You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: markdowns/DEVELOPMENT_PREREQUISITES.md
+6-23Lines changed: 6 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,14 @@ This document outlines the system requirements and installation steps needed to
8
8
* Cargo
9
9
* Incredible
10
10
* WebAssembly
11
-
* Pnpm
12
-
* Vite
13
11
* macOS AppKit (via objc2)
14
12
* Windows API (via windows-rs)
15
13
16
14
## GitHub Authentication
17
15
18
16
This project depends on the private [incredible-alpha](https://github.com/ronilan/incredible-alpha) crate, pulled by Cargo as a git dependency over HTTPS. The first build (`cargo build-tools`) will fail until your machine can read that repo.
19
17
20
-
The easiest way to authenticate is the GitHub CLI:
18
+
The easiest way to authenticate is the [GitHub CLI](https://cli.github.com/) — download and install it from [cli.github.com](https://cli.github.com/) if you don't have it already:
21
19
22
20
```bash
23
21
gh auth login
@@ -29,36 +27,21 @@ Alternatively, create a fine-grained Personal Access Token with read access to `
29
27
30
28
## macOS
31
29
32
-
1.**Install Rust** - In Terminal, run the command from [rustup.rs](https://rustup.rs/):
33
-
```bash
34
-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
35
-
```
36
-
2.**Install Xcode Command Line Tools**:
30
+
1.**Install Xcode Command Line Tools**:
37
31
```bash
38
32
xcode-select --install
39
33
```
40
-
3.**Enable pnpm**:
41
-
```bash
42
-
corepack enable
43
-
```
44
-
4.**Install wasm-pack**:
34
+
2.**Install Rust** - Download and run the installer from [rustup.rs](https://rustup.rs/)
1.**Install Rust** - Download and run [rustup-init.exe](https://rustup.rs/) from [rustup.rs](https://rustup.rs/)
56
-
2.**Enable pnpm** - Open PowerShell and run:
57
-
```powershell
58
-
corepack enable
59
-
```
60
-
3.**Install wasm-pack** - In PowerShell:
43
+
2.**Install wasm-pack** - In PowerShell:
61
44
```powershell
62
45
cargo install wasm-pack
63
46
```
64
-
4.**Install Visual Studio Build Tools** - Download from [visualstudio.microsoft.com](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022). In the installer, select the **"Desktop development with C++"** workload. This is required to compile the `sharp` native image module and provides the Windows SDK.
47
+
3.**Install Visual Studio Build Tools** - Download from [visualstudio.microsoft.com](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022). In the installer, select the **"Desktop development with C++"** workload. This provides the Windows SDK and is required to build the native Windows binary.
0 commit comments