|
9 | 9 | @{ |
10 | 10 |
|
11 | 11 | # Script module or binary module file associated with this manifest. |
12 | | - RootModule = 'Gatekeeper.psm1' |
| 12 | + RootModule = 'Gatekeeper.psm1' |
13 | 13 |
|
14 | 14 | # Version number of this module. |
15 | | - ModuleVersion = '0.1.0' |
| 15 | + ModuleVersion = '0.1.1' |
16 | 16 |
|
17 | 17 | # Supported PSEditions |
18 | 18 | # CompatiblePSEditions = @() |
19 | 19 |
|
20 | 20 | # ID used to uniquely identify this module |
21 | | - GUID = '7c2fb6fe-e024-4c39-b687-84fbe7473e3f' |
| 21 | + GUID = '7c2fb6fe-e024-4c39-b687-84fbe7473e3f' |
22 | 22 |
|
23 | 23 | # Author of this module |
24 | | - Author = 'Gilbert Sanchez' |
| 24 | + Author = 'Gilbert Sanchez' |
25 | 25 |
|
26 | 26 | # Company or vendor of this module |
27 | | - CompanyName = 'Gilbert Sanchez' |
| 27 | + CompanyName = 'Gilbert Sanchez' |
28 | 28 |
|
29 | 29 | # Copyright statement for this module |
30 | | - Copyright = '(c) Gilbert Sanchez. All rights reserved.' |
| 30 | + Copyright = '(c) Gilbert Sanchez. All rights reserved.' |
31 | 31 |
|
32 | 32 | # Description of the functionality provided by this module |
33 | | - Description = 'Helps implement feature flags in your PowerShell projects.' |
| 33 | + Description = 'Helps implement feature flags in your PowerShell projects.' |
34 | 34 |
|
35 | 35 | # Minimum version of the PowerShell engine required by this module |
36 | 36 | # PowerShellVersion = '' |
|
51 | 51 | # ProcessorArchitecture = '' |
52 | 52 |
|
53 | 53 | # Modules that must be imported into the global environment prior to importing this module |
54 | | - RequiredModules = @( |
| 54 | + RequiredModules = @( |
55 | 55 | @{ |
56 | | - ModuleName = 'Configuration' |
| 56 | + ModuleName = 'Configuration' |
57 | 57 | ModuleVersion = '1.6.0' |
58 | 58 | } |
59 | 59 | ) |
|
62 | 62 | # RequiredAssemblies = @() |
63 | 63 |
|
64 | 64 | # Script files (.ps1) that are run in the caller's environment prior to importing this module. |
65 | | - ScriptsToProcess = @('Enums\Effect.ps1', 'Classes\Property.ps1', 'Classes\FeatureFlag.ps1') |
| 65 | + ScriptsToProcess = @('Enums\Effect.ps1', 'Classes\Property.ps1', 'Classes\FeatureFlag.ps1') |
66 | 66 |
|
67 | 67 | # Type files (.ps1xml) to be loaded when importing this module |
68 | 68 | # TypesToProcess = @() |
|
77 | 77 | FunctionsToExport = '*' |
78 | 78 |
|
79 | 79 | # 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. |
80 | | - CmdletsToExport = '*' |
| 80 | + CmdletsToExport = '*' |
81 | 81 |
|
82 | 82 | # Variables to export from this module |
83 | 83 | VariablesToExport = '*' |
84 | 84 |
|
85 | 85 | # 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. |
86 | | - AliasesToExport = '*' |
| 86 | + AliasesToExport = '*' |
87 | 87 |
|
88 | 88 | # DSC resources to export from this module |
89 | 89 | # DscResourcesToExport = @() |
|
95 | 95 | # FileList = @() |
96 | 96 |
|
97 | 97 | # 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. |
98 | | - PrivateData = @{ |
| 98 | + PrivateData = @{ |
99 | 99 |
|
100 | 100 | PSData = @{ |
101 | 101 |
|
102 | 102 | # Tags applied to this module. These help with module discovery in online galleries. |
103 | | - Tags = @( |
| 103 | + Tags = @( |
104 | 104 | 'PSEdition_Core', |
105 | 105 | 'Windows', |
106 | 106 | 'Linux', |
107 | 107 | 'MacOS' |
108 | 108 | ) |
109 | 109 |
|
110 | 110 | # A URL to the license for this module. |
111 | | - LicenseUri = 'https://github.com/HeyItsGilbert/Gatekeeper/blob/master/LICENSE' |
| 111 | + LicenseUri = 'https://github.com/HeyItsGilbert/Gatekeeper/blob/master/LICENSE' |
112 | 112 |
|
113 | 113 | # A URL to the main website for this project. |
114 | | - ProjectUri = 'https://github.com/HeyItsGilbert/Gatekeeper/' |
| 114 | + ProjectUri = 'https://github.com/HeyItsGilbert/Gatekeeper/' |
115 | 115 |
|
116 | 116 | # A URL to an icon representing this module. |
117 | | - IconUri = 'https://raw.githubusercontent.com/HeyItsGilbert/Gatekeeper/main/static/icon.png' |
| 117 | + IconUri = 'https://raw.githubusercontent.com/HeyItsGilbert/Gatekeeper/main/static/icon.png' |
118 | 118 |
|
119 | 119 | # ReleaseNotes of this module |
120 | | - ReleaseNotes = 'https://github.com/HeyItsGilbert/Gatekeeper/blob/master/CHANGELOG.md' |
| 120 | + ReleaseNotes = 'https://github.com/HeyItsGilbert/Gatekeeper/blob/master/CHANGELOG.md' |
121 | 121 |
|
122 | 122 | # Prerelease string of this module |
123 | 123 | # Prerelease = '' |
|
0 commit comments