New-VesterConfig needs to ask each Vest what its config value should be named. To do this, I used RegEx. (I like RegEx, but this is true.)
To fix #178, I employed my new best friend, PowerShell's AST. Private function Get-VestConfigValue now handles this work. New-VesterConfig has been updated with the changes, and Set-VesterConfigValue has been updated to no longer expect the $Matches variable.
New-VesterConfig
needs to ask each Vest what its config value should be named. To do this, I used RegEx. (I like RegEx, but this is true.)To fix #178, I employed my new best friend, PowerShell's AST. Private function
Get-VestConfigValue
now handles this work.New-VesterConfig
has been updated with the changes, andSet-VesterConfigValue
has been updated to no longer expect the$Matches
variable.(.md files will merge in with the other PR)