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.
1717
1818## Serving the documentation locally
1919
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:
2122
2223``` shell
24+ ./build.ps1 -Stage build -Target PrepareBuild
25+ ./build.ps1 -Stage build -Target Build
2326./build.ps1 -Stage docs -Target PreviewDocs
2427```
2528
2629### On Windows
2730
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
2932terminal:
3033
3134``` shell
35+ ./build.ps1 -Stage build -Target PrepareBuild
36+ ./build.ps1 -Stage build -Target Build
3237./build.ps1 -Stage docs -Target PreviewDocs
3338```
3439
3540### On Unix
3641
3742First 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 :
3944
4045``` 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
4249```
4350
4451After pressing enter, the documentation will be generated and then served under
You can’t perform that action at this time.
0 commit comments