Skip to content

Commit

Permalink
Add Manage-Windows.psm1 file to 'RequiredModules' & 'FileList' with a…
Browse files Browse the repository at this point in the history
…dding additional 'Tags' & incrementing 'ModuleVersion' by 0.1.0 for new functionality
  • Loading branch information
AnasAlhwid committed Oct 24, 2024
1 parent 85b9488 commit aa3a6c2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Qatam-CLI.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Anas Alhwid (Qatam)
#
# Generated on: 10/19/2024
# Generated on: 10/24/2024
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'Qatam-CLI.psm1'

# Version number of this module.
ModuleVersion = '0.1.3'
ModuleVersion = '0.2.0'

# Supported PSEditions
CompatiblePSEditions = 'Core'
Expand Down Expand Up @@ -52,7 +52,8 @@ PowerShellVersion = '7.4'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @('$PSScriptRoot\..\src\windows\modules\Manage-Design.psm1',
'$PSScriptRoot\..\src\windows\modules\Manage-Git.psm1')
'$PSScriptRoot\..\src\windows\modules\Manage-Git.psm1',
'$PSScriptRoot\..\src\windows\modules\Manage-Windows.psm1')

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down Expand Up @@ -90,15 +91,16 @@ AliasesToExport = @()
# List of all files packaged with this module
FileList = '$PSScriptRoot\..\Qatam-CLI.psm1',
'$PSScriptRoot\..\src\windows\modules\Manage-Design.psm1',
'$PSScriptRoot\..\src\windows\modules\Manage-Git.psm1'
'$PSScriptRoot\..\src\windows\modules\Manage-Git.psm1',
'$PSScriptRoot\..\src\windows\modules\Manage-Windows.psm1'

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'qatam','cli','git','github','manage','powershell','automate'
Tags = 'qatam','cli','windows','os','git','github','manage','powershell','automate'

# A URL to the license for this module.
LicenseUri = 'https://github.com/AnasAlhwid/qatam-cli/blob/main/LICENSE'
Expand Down

0 comments on commit aa3a6c2

Please sign in to comment.