Skip to content

Commit

Permalink
Remove unnecessary filters from site
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Nov 27, 2024
1 parent bedb276 commit 50ca5a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/build_site.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ if [[ -n "$CI" || ! -d example/docs ]]; then
fi

# Checkout the changelog as of the last release
git checkout $(git describe --tags --abbrev=0) -- CHANGELOG.md
if [[ -n "$CI" ]]; then
git checkout $(git describe --tags --abbrev=0) -- CHANGELOG.md
fi

# Build the actual site, references the API docs
node bin/typedoc --options site/typedoc.config.jsonc
Expand Down
2 changes: 2 additions & 0 deletions site/typedoc.config.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
"API": "https://typedoc.org/api/index.html",
"GitHub": "https://github.com/TypeStrong/typedoc",
},
// The site doesn't need filters as it doesn't actually include code
"visibilityFilters": {},

"validation": {
"invalidLink": true,
Expand Down

0 comments on commit 50ca5a6

Please sign in to comment.