beam.serverside.new.psm1
$helpersPath = (Split-Path -parent $MyInvocation.MyCommand.Definition) get-childitem "$helpersPath\functions" -filter "*.ps1" | ? { -not ($_.Name.Contains(".Tests.")) } | % { . $_.FullName } # no need to do Export-ModuleMember here - exported functions are defined in psd1 #Export-ModuleMember -Function * -Alias * # Compare-StagingConfig, ` # Copy-FromStaging ` |