refactor: Refactored the PowerShell documentation build process into modular scripts#536
Draft
VaclavElias wants to merge 3 commits into
Draft
refactor: Refactored the PowerShell documentation build process into modular scripts#536VaclavElias wants to merge 3 commits into
VaclavElias wants to merge 3 commits into
Conversation
- BuildDocs.ps1: delegate steps to new build/ scripts (Settings, Languages, ConsoleUI, FileUtility, DocFx, ArchitectureDocs, PostProcessing, Build) - Centralize paths, filenames, and tokens in Settings.ps1 - Unify interactive prompts and language selection logic - Move architecture docs import and TOC generation to ArchitectureDocs.ps1 - Move per-language build logic to Build.ps1 (overlays, warning banners) - Move DocFX invocation and API metadata to DocFx.ps1 - Move post-processing (docurl, sitemap, 404, deployment extras) to PostProcessing.ps1 - Add FileUtility.ps1 for path and file helpers - Add Languages.ps1 for language utilities - Update documentation-generation-pipeline.md for new structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Important
Merge after 4.4 release.
PR Classification
Code cleanup and documentation update to modularize and clarify the PowerShell documentation build pipeline.
PR Summary
Refactored the PowerShell documentation build process into modular scripts for better maintainability and future C# migration, and updated related documentation to reflect the new structure.