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.
1 parent 84d42fa commit 13118ffCopy full SHA for 13118ff
PipeScript.psm1
@@ -19,6 +19,18 @@ $aliasList +=
19
})
20
21
22
+$pipeScriptKeywords =
23
+ Get-Transpiler |
24
+ Where-Object { $_.Metadata.'PipeScript.Keyword' } |
25
+ Select-Object -ExpandProperty DisplayName
26
+
27
+$aliasList +=
28
29
+ @(foreach ($alias in @($pipeScriptKeywords)) {
30
+ Set-Alias "$alias" "Use-PipeScript" -PassThru:$True
31
+ })
32
33
34
$MyModule = $MyInvocation.MyCommand.ScriptBlock.Module
35
$aliasList +=
36
0 commit comments