Skip to content

Commit

Permalink
Update version numbers in spellcheck pipeline (#6165)
Browse files Browse the repository at this point in the history
* Update version numbers in spellcheck pipeline

* fixed webserver and `concat` references

Co-authored-by: Aaron Stannard <aaron@petabridge.com>
  • Loading branch information
SeanKilleen and Aaronontheweb committed Oct 10, 2022
1 parent b6c5e93 commit c508e3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build-system/pr-validation.yaml
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
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
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

0 comments on commit c508e3e

Please sign in to comment.