|
12 | 12 | RootModule = 'PesterExplorer.psm1' |
13 | 13 |
|
14 | 14 | # Version number of this module. |
15 | | - ModuleVersion = '0.1.0' |
| 15 | + ModuleVersion = '0.2.0' |
16 | 16 |
|
17 | 17 | # Supported PSEditions |
18 | 18 | # CompatiblePSEditions = @() |
19 | 19 |
|
20 | 20 | # ID used to uniquely identify this module |
21 | | - GUID = '1b8311c2-23fd-4a4c-90de-e17cfc306b04' |
| 21 | + GUID = '1b8311c2-23fd-4a4c-90de-e17cfc306b04' |
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 = 'HeyItsGilbert' |
| 27 | + CompanyName = 'HeyItsGilbert' |
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 = 'A TUI to explore Pester results.' |
| 33 | + Description = 'A TUI to explore Pester results.' |
34 | 34 |
|
35 | 35 | # Minimum version of the PowerShell engine required by this module |
36 | 36 | PowerShellVersion = '7.0' |
|
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 = 'Pester' |
| 56 | + ModuleName = 'Pester' |
57 | 57 | ModuleVersion = '5.0.0' |
58 | 58 | }, |
59 | 59 | @{ |
60 | | - ModuleName = 'PwshSpectreConsole' |
| 60 | + ModuleName = 'PwshSpectreConsole' |
61 | 61 | ModuleVersion = '2.3.0' |
62 | 62 | } |
63 | 63 | ) |
|
81 | 81 | FunctionsToExport = '*' |
82 | 82 |
|
83 | 83 | # 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. |
84 | | - CmdletsToExport = '*' |
| 84 | + CmdletsToExport = '*' |
85 | 85 |
|
86 | 86 | # Variables to export from this module |
87 | 87 | VariablesToExport = '*' |
88 | 88 |
|
89 | 89 | # 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. |
90 | | - AliasesToExport = '*' |
| 90 | + AliasesToExport = '*' |
91 | 91 |
|
92 | 92 | # DSC resources to export from this module |
93 | 93 | # DscResourcesToExport = @() |
|
99 | 99 | # FileList = @() |
100 | 100 |
|
101 | 101 | # 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. |
102 | | - PrivateData = @{ |
| 102 | + PrivateData = @{ |
103 | 103 |
|
104 | 104 | PSData = @{ |
105 | 105 |
|
106 | 106 | # Tags applied to this module. These help with module discovery in online galleries. |
107 | | - Tags = @( |
| 107 | + Tags = @( |
108 | 108 | 'Windows', |
109 | 109 | 'Linux', |
110 | 110 | 'macOS', |
|
116 | 116 | ) |
117 | 117 |
|
118 | 118 | # A URL to the license for this module. |
119 | | - LicenseUri = 'https://github.com/HeyItsGilbert/PesterExplorer/blob/main/LICENSE' |
| 119 | + LicenseUri = 'https://github.com/HeyItsGilbert/PesterExplorer/blob/main/LICENSE' |
120 | 120 |
|
121 | 121 | # A URL to the main website for this project. |
122 | | - ProjectUri = 'https://github.com/HeyItsGilbert/PesterExplorer' |
| 122 | + ProjectUri = 'https://github.com/HeyItsGilbert/PesterExplorer' |
123 | 123 |
|
124 | 124 | # A URL to an icon representing this module. |
125 | | - IconUri = 'https://raw.githubusercontent.com/HeyItsGilbert/PesterExplorer/main/images/icon.png' |
| 125 | + IconUri = 'http://raw.githubusercontent.com/HeyItsGilbert/PesterExplorer/main/images/icon.png' |
126 | 126 |
|
127 | 127 | # ReleaseNotes of this module |
128 | 128 | ReleaseNotes = 'https://github.com/HeyItsGilbert/PesterExplorer/blob/main/CHANGELOG.md' |
|
0 commit comments