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

Docs: workaround for typedoc issue #2802 (backport #7470) [release/4.11.x] #7476

Merged
merged 4 commits into from
Dec 16, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@itwin/build-tools",
"comment": "add temporary fix for [email protected] issue #2802",
"type": "none"
}
],
"packageName": "@itwin/build-tools"
}
6 changes: 2 additions & 4 deletions common/config/azure-pipelines/jobs/docs-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ parameters:
type: boolean
default: false



jobs:
- job: DocsBuild
displayName: Docs Build
Expand Down Expand Up @@ -97,7 +95,7 @@ jobs:
- task: DownloadPipelineArtifact@2
displayName: Download Core Generated Docs Artifact
inputs:
source: 'specific'
source: "specific"
project: 2c48216e-e72f-48b4-a4eb-40ff1c04e8e4
pipeline: 7436 # iTwin.js Docs (docs-ci.yaml)
artifact: Core Generated Docs
Expand All @@ -117,7 +115,7 @@ jobs:
useCurrentConnectorFrameworkDocsArtifact: ${{ parameters.useCurrentConnectorFrameworkDocsArtifact }}

# Currently BeMetalsmith is an internal only tool
- script: npm install @bentley/bemetalsmith@5.3.x
- script: npm install @bentley/bemetalsmith@5.5.x
displayName: Install BeMetalsmith
workingDirectory: ${{ parameters.workingDir }}

Expand Down
4 changes: 3 additions & 1 deletion tools/build/scripts/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ const readmeOption = (argv.readme === undefined) ? "none" : argv.readme;
const options = [
"--hideGenerator",
"--logLevel",
"Error"
"Error",
"--cascadedModifierTags", // workaround for https://github.com/TypeStrong/typedoc/issues/2802
"@experimental"
];

const pluginOptions = [
Expand Down
Loading