We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25ff74c + d40714f commit 51bfbe7Copy full SHA for 51bfbe7
src/CompatPowerShellGet.psm1
@@ -2818,6 +2818,11 @@ param(
2818
#>
2819
}
2820
2821
+New-Alias -Name fimo -Value Find-Module
2822
+New-Alias -Name inmo -Value Install-Module
2823
+New-Alias -Name pumo -Value Publish-Module
2824
+New-Alias -Name upmo -Value Update-Module
2825
+
2826
$functionsToExport = @(
2827
"Find-Command",
2828
"Find-DscResource",
@@ -2845,4 +2850,11 @@ $functionsToExport = @(
2845
2850
"Update-ScriptFileInfo"
2846
2851
)
2847
2852
2848
-export-ModuleMember -Function $functionsToExport
2853
+$aliasesToExport = @('
2854
+ fimo',
2855
+ 'inmo',
2856
+ 'pumo',
2857
+ 'upmo'
2858
+)
2859
2860
+export-ModuleMember -Function $functionsToExport -Alias $aliasesToExport
0 commit comments