Skip to content

Commit 74d4ca6

Browse files
committed
added argument completers support
1 parent f916186 commit 74d4ca6

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.build/template/Template.psm1

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,15 @@ if (Test-Path -Path $publicPath) {
9393
}
9494

9595
#endregion Public
96+
97+
#region Completers
98+
99+
$completersPath = "$PSScriptRoot\completers"
100+
101+
if (Test-Path -Path $completersPath) {
102+
Get-ChildItem -Path $completersPath -Filter '*.ps1' | where PSIsContainer -eq $false | foreach {
103+
. $_.FullName
104+
}
105+
}
106+
107+
#region Completers

.build/template/completers/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)