Skip to content

Commit

Permalink
feat: HelpOut WebSocket ( Fixes #9 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Nov 27, 2024
1 parent 90e7ca6 commit 46c381d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Build/WebSocket.HelpOut.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#requires -Module HelpOut

#region Load the Module
$ModuleName = 'WebSocket'
Push-Location ($PSScriptRoot | Split-Path)
if (-not (Get-Module $ModuleName)) {
Import-Module .\ -Global -PassThru | Out-Host
}
#endregion Load the Module

# This will save the MarkdownHelp to the docs folder, and output all of the files created.
Save-MarkdownHelp -PassThru -Module $ModuleName -ExcludeCommandType Alias

Pop-Location

0 comments on commit 46c381d

Please sign in to comment.