Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version numbers in spellcheck pipeline #6165

Merged
merged 2 commits into from
Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions build-system/pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
submodules: recursive # set to 'true' for a single level of submodules or 'recursive' to get submodules of submodules
- task: NodeTool@0
inputs:
versionSpec: "12.x"
versionSpec: "16.x"
- task: Npm@1
inputs:
command: "custom"
customCommand: "install -g cspell@5.17.0"
customCommand: "install -g cspell@6.12.0"
- task: CmdLine@2
inputs:
script: 'cspell --config ./docs/cSpell.json "docs/**/*.md"'
Expand Down Expand Up @@ -187,4 +187,4 @@ jobs:
scriptFileName: build.cmd
scriptArgs: CreateNuget nugetprerelease=dev incremental
outputDirectory: "bin/nuget"
artifactName: "nuget_pack-$(Build.BuildId)"
artifactName: "nuget_pack-$(Build.BuildId)"
1 change: 1 addition & 0 deletions docs/cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"blackhole",
"Bootcamp",
"buncher",
"concat",
"combinator",
"combinators",
"composability",
Expand Down
2 changes: 1 addition & 1 deletion docs/community/contributing/documentation-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ build.sh docfx

This will generate all of the static HTML / CSS / JS files needed to render the website into the `~/docs/_site` folder in your local repository.

In order for all of the JavaScript components to work correctly in your browser, you'll need to serve the documents via a local webserver rather than the file system. You can launch DocFx's build in server via the following script in the root of this repository:
In order for all of the JavaScript components to work correctly in your browser, you'll need to serve the documents via a local web server rather than the file system. You can launch DocFx's build in server via the following script in the root of this repository:

```console
serve-docs.cmd
Expand Down