Skip to content

Commit

Permalink
fix: Namespacing .commands.types.ps1xml ( Fixes #238, re #236 )
Browse files Browse the repository at this point in the history
  • Loading branch information
StartAutomating authored and StartAutomating committed Jul 7, 2024
1 parent 1975db6 commit b838512
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EZOut.commands.types.ps1xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- Generated with EZOut 2.0.6: Install-Module EZOut or https://github.com/StartAutomating/EZOut -->
<Types>
<Type>
<Name>Commands</Name>
<Name>EZOut.Commands</Name>
<Members>
<ScriptMethod>
<Name>Clear-FormatData</Name>
Expand Down Expand Up @@ -5460,7 +5460,7 @@ if ($types) {
$MyModuleIsLoaded = Get-Module $MyModuleName
if ($MyModuleIsLoaded) {
$myCommandTypesFilePath = Join-Path $destinationRoot "$myModuleName.commands.types.ps1xml"
Import-TypeView -Commands @($MyModuleIsLoaded.ExportedFunctions.Values) | Out-TypeData -OutputPath $myCommandTypesFilePath
Import-TypeView -Commands @($MyModuleIsLoaded.ExportedFunctions.Values) -Namespace $myModuleName | Out-TypeData -OutputPath $myCommandTypesFilePath
}
Pop-Location
'@
Expand Down

0 comments on commit b838512

Please sign in to comment.