enosix.SfdxUtil.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'enosix.SfdxUtil.psm1' # Version number of this module. ModuleVersion = '1.0.9' # ID used to uniquely identify this module GUID = '54683ba1-96ea-4256-8c14-a409e229c5a0' # Author of this module Author = 'enosix' # Company or vendor of this module CompanyName = 'enosix' # Description of the module Description = 'Utilities for using the Salesforce CLI from Powershell' # Private data available to the module PrivateData = @{ # Additional metadata used by PowerShellGet for publishing PSData = @{ # Prerelease string should be here, so ModuleBuilder can set it Prerelease = '' # Release Notes have to be here, so ModuleBuilder can update them ReleaseNotes = ' ' # Tags applied to this module in online galleries. Tags = @() # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. # ProjectUri = '' # A URL to an icon representing this module. # IconUri = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save RequireLicenseAcceptance = $false # Modules that are in RequiredModules which don't need to be installed by PowerShellGet # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '7.0' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @('00-sfdx','Build-OctopusPackage','Build-SFPackage','Create-Package','Create-ScratchOrg','Delete-ScratchOrg','Get-2GPId','Get-PackageVersionId','Get-SubscriberPackageVersionId','Get-SubscriberPackageVersionIdFromRequest','Grant-PermSet','Import-DataPlan','Import-Record','Import-Records','Install-FromJson','Install-Package','Invoke-Step','Push-Source','Rebuild-ScratchOrg','Run-Tests','Sort-CustomLabels','Update-Package') # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() } |