-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSJekyll.psd1
35 lines (32 loc) · 1.14 KB
/
PSJekyll.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@{
ModuleVersion ='0.1'
Description = 'Scarily Simple Static Sites with Jekyll and PowerShell'
Guid = '793784c4-0e1f-4928-b874-1e601f9a3d29'
RootModule = 'PSJekyll.psm1'
TypesToProcess = @('PSJekyll.types.ps1xml')
FormatsToProcess = @('PSJekyll.format.ps1xml')
Author = 'James Brundage'
Copyright = '2024'
CompanyName = 'PowerShellWeb'
PrivateData = @{
PSData = @{
Tags = 'PowerShellWeb','Jekyll','Docker','Container','GitHubAction','StaticSite'
LicenseUri = 'https://github.com/PowerShellWeb/PSJekyll/blob/main/LICENSE'
ProjectUri = 'https://github.com/PowerShellWeb/PSJekyll'
ReleaseNotes = @'
## PSJekyll 0.1
> Like It? [Star It](https://github.com/PowerShellWeb/PSJekyll)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
* Initial Release of PSJekyll
* GitHub Action for PSJekyll
* Docker Container for PSJekyll
* PowerShell Module for PSJekyll
~~~PowerShell
Install-Module -Name PSJekyll -Scope CurrentUser -Force -AllowClobber
Import-Module PSJekyll -Force -PassThru | Split-Path | Push-Location
$PSJekyll.Site
~~~
'@
}
}
}