diff --git a/src/functions/public/Get-NerdFont.ps1 b/src/functions/public/Get-NerdFont.ps1 index c175021..4e1537a 100644 --- a/src/functions/public/Get-NerdFont.ps1 +++ b/src/functions/public/Get-NerdFont.ps1 @@ -20,6 +20,13 @@ Get-NerdFonts -Name '*Code' Get the NerdFont with the name ending with 'Code'. + + .LINK + https://psmodule.io/NerdFonts/Functions/Get-NerdFont + + .NOTES + More information about the NerdFonts can be found at: + [NerdFonts](https://www.nerdfonts.com/) | [GitHub](https://github.com/ryanoasis/nerd-fonts) #> [Alias('Get-NerdFonts')] [OutputType([System.Object[]])] diff --git a/src/functions/public/Install-NerdFont.ps1 b/src/functions/public/Install-NerdFont.ps1 index 7b9ecd3..bece478 100644 --- a/src/functions/public/Install-NerdFont.ps1 +++ b/src/functions/public/Install-NerdFont.ps1 @@ -1,4 +1,5 @@ -#Requires -Modules @{ ModuleName = 'Fonts'; RequiredVersion = '1.1.19' } +#Requires -Modules @{ ModuleName = 'Fonts'; RequiredVersion = '1.1.21' } +#Requires -Modules @{ ModuleName = 'Admin'; RequiredVersion = '1.1.6' } function Install-NerdFont { <# @@ -27,6 +28,13 @@ function Install-NerdFont { Install-NerdFont -All Installs all Nerd Fonts to the current user. + + .LINK + https://psmodule.io/NerdFonts/Functions/Install-NerdFont + + .NOTES + More information about the NerdFonts can be found at: + [NerdFonts](https://www.nerdfonts.com/) | [GitHub](https://github.com/ryanoasis/nerd-fonts) #> [CmdletBinding( DefaultParameterSetName = 'ByName', diff --git a/src/manifest.psd1 b/src/manifest.psd1 deleted file mode 100644 index 4e2476f..0000000 --- a/src/manifest.psd1 +++ /dev/null @@ -1,3 +0,0 @@ -@{ - PowerShellVersion = '5.1' -}