Skip to content

Commit 0b661f1

Browse files
Simplify manifest file (#84)
1 parent ccaed1d commit 0b661f1

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

src/GitHub/GitHub.psd1

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
1-
@{
2-
# Version number of this module
1+
@{
32
ModuleVersion = '0.3.0'
4-
5-
# Description of the functionality provided by this module
63
Description = 'GitHub PowerShell Module'
7-
8-
# Private data to pass to the module specified in RootModule/ModuleToProcess.
9-
# This may also contain a PSData hashtable with additional module metadata used by PowerShell.
104
PrivateData = @{
11-
125
PSData = @{
13-
14-
# Tags applied to this module. These help with module discovery in online galleries.
15-
Tags = 'GitHub', 'PSModule'
16-
17-
# A URL to the license for this module.
6+
Tags = @(
7+
'GitHub'
8+
'PSModule'
9+
)
1810
LicenseUri = 'https://github.com/PSModule/GitHub/blob/main/LICENSE.md'
19-
20-
# A URL to the main website for this project.
2111
ProjectUri = 'https://github.com/PSModule/GitHub'
22-
23-
# A URL to an icon representing this module.
2412
IconUri = 'https://raw.githubusercontent.com/PSModule/GitHub/main/media/icon.png'
2513
}
2614
}

0 commit comments

Comments
 (0)