Exports.ps1
<#
This Script is used as an easy way to control and track what is exported from this module The PSM1 file calls this script. Each key has an array for its value that array is passed to the Export-ModuleMember argument that has the same name as the key. #> $Exports = @{} # Add Alias' To Export Here $Exports.Alias = @( ) # Add Cmdlets To Export Here $Exports.Cmdlet = @( ) # Add Functions To Export Here $Exports.Function = @( 'New-ModuleScaffolding' ) # Add Variables To Export Here $Exports.Variable = @( ) #Return The Exports return $Exports |