File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -17,28 +17,35 @@ expected.
17
17
18
18
## Serving the documentation locally
19
19
20
- To serve up the documentation locally, you need to run the script
20
+ To serve up the documentation locally, you need to run the following
21
+ commands:
21
22
22
23
``` shell
24
+ ./build.ps1 -Stage build -Target PrepareBuild
25
+ ./build.ps1 -Stage build -Target Build
23
26
./build.ps1 -Stage docs -Target PreviewDocs
24
27
```
25
28
26
29
### On Windows
27
30
28
- On Windows, you need to run the following build command in a PowerShell
31
+ On Windows, you need to run the following commands in a PowerShell
29
32
terminal:
30
33
31
34
``` shell
35
+ ./build.ps1 -Stage build -Target PrepareBuild
36
+ ./build.ps1 -Stage build -Target Build
32
37
./build.ps1 -Stage docs -Target PreviewDocs
33
38
```
34
39
35
40
### On Unix
36
41
37
42
First you need to [ install PowerShell on macOS] [ ps-mac ] or [ Linux] [ ps-linux ] ,
38
- then execute the following command :
43
+ then execute the following commands :
39
44
40
45
``` shell
41
- pwsh ./build.ps1 -Stage docs -Target PreviewDocs
46
+ ./build.ps1 -Stage build -Target PrepareBuild
47
+ ./build.ps1 -Stage build -Target Build
48
+ ./build.ps1 -Stage docs -Target PreviewDocs
42
49
```
43
50
44
51
After pressing enter, the documentation will be generated and then served under
You can’t perform that action at this time.
0 commit comments