Skip to content

Commit 3322ec2

Browse files
committed
moved plaster to plugin folder
1 parent fd47f23 commit 3322ec2

227 files changed

Lines changed: 13746 additions & 28 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/ModuleBuild.buildenvironment.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if ((Get-Variable 'BuildEnv' -ErrorAction:SilentlyContinue) -eq $null) {
1818
ForceInstallModule = $true
1919
Encoding = 'utf8'
2020
ModuleToBuild = 'ModuleBuild'
21-
ModuleVersion = '0.0.1'
21+
ModuleVersion = '0.2.4'
2222
ModuleWebsite = 'https://github.com/zloeber/ModuleBuild'
2323
ModuleCopyright = "(c) $((get-date).Year.ToString()) Zachary Loeber. All rights reserved."
2424
ModuleLicenseURI = 'https://github.com/zloeber/ModuleBuild/LICENSE.md'
@@ -47,7 +47,7 @@ if ((Get-Variable 'BuildEnv' -ErrorAction:SilentlyContinue) -eq $null) {
4747
OptionUpdateVersionAfterPublishing = $true
4848

4949
# Additional paths in the source module which should be copied over to the final build release
50-
AdditionalModulePaths = @('plaster','plugins')
50+
AdditionalModulePaths = @('build\dependencies\plaster','plugins')
5151
# Generate a yml file in the root folder of this project for readthedocs.org integration
5252
OptionGenerateReadTheDocs = $True
5353
# Most of the following options you probably don't need to change

build/reports/0.2.4/CodeHealthReport-Private.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h1>
189189
<div class="col-sm-4 col-md-5 col-lg-4 right-header">
190190
<h5>
191191
Analyzed path :<span class="right-header-data"> src\private</span><br>
192-
Analysis date :<span class="right-header-data"> 2019-12-18 17:28:44Z</span>
192+
Analysis date :<span class="right-header-data"> 2019-12-18 21:22:29Z</span>
193193
</h5>
194194
</div>
195195
</div>

build/reports/0.2.4/CodeHealthReport-Public.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h1>
189189
<div class="col-sm-4 col-md-5 col-lg-4 right-header">
190190
<h5>
191191
Analyzed path :<span class="right-header-data"> src\public</span><br>
192-
Analysis date :<span class="right-header-data"> 2019-12-18 17:27:29Z</span>
192+
Analysis date :<span class="right-header-data"> 2019-12-18 21:17:26Z</span>
193193
</h5>
194194
</div>
195195
</div>

build/startup/makeplastermanifest.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
Make the plaster template manifest file for this project.
33
#>
44

5-
$ModuleBuildPath = Join-Path $BuildToolPath 'plaster\template\plasterManifest.xml'
5+
$ModuleBuildPath = Join-Path $BuildRoot 'plugins\plaster\template\plasterManifest.xml'
66

77
Write-Description 'Creating the plaster manifest file for this project...' -Color White -level 3
88

99
# First ensure that our custom version of Plaster is loaded
1010
Remove-Module Plaster -ErrorAction:SilentlyContinue
1111
try {
12-
Import-Module $(Join-Path $BuildToolPath "dependencies\embeded\plaster\1.1.0-c\Plaster.psd1")
12+
Import-Module $(Join-Path $BuildRoot "plugins\plaster\module\1.1.0-c\Plaster.psd1")
1313
}
1414
catch {
1515
throw 'You need the plaster module to build this plaster manifest.'
1616
}
1717

1818
# Load our parameter and content
19-
. $(Join-Path $BuildToolPath "plaster\manifesttools\PlasterParams.ps1")
20-
. $(Join-Path $BuildToolPath "plaster\manifesttools\PlasterContent.ps1")
19+
. $(Join-Path $BuildRoot "plugins\plaster\manifesttools\PlasterParams.ps1")
20+
. $(Join-Path $BuildRoot "plugins\plaster\manifesttools\PlasterContent.ps1")
2121

2222
# set version
2323
$version = (git describe --tags --always --match "v[0-9]*") -replace 'v',''

build/plaster/manifesttools/PlasterContent.ps1 renamed to plugins/plaster/manifesttools/PlasterContent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ $Content = @(
116116
},
117117
@{
118118
ContentType = 'file'
119-
Source = 'scaffold\build\PSDepend\*'
120-
Destination = 'build\PSDepend'
119+
Source = 'scaffold\build\dependencies\PSDepend\*'
120+
Destination = 'build\dependencies\PSDepend'
121121
},
122122
@{
123123
ContentType = 'templateFile'
File renamed without changes.

build/dependencies/embeded/plaster/1.1.0-c/GetModuleExtension.ps1 renamed to plugins/plaster/module/1.1.0-c/GetModuleExtension.ps1

File renamed without changes.

build/dependencies/embeded/plaster/1.1.0-c/GetPlasterTemplate.ps1 renamed to plugins/plaster/module/1.1.0-c/GetPlasterTemplate.ps1

File renamed without changes.

build/dependencies/embeded/plaster/1.1.0-c/InvokePlaster.ps1 renamed to plugins/plaster/module/1.1.0-c/InvokePlaster.ps1

File renamed without changes.

build/dependencies/embeded/plaster/1.1.0-c/NewPlasterManifest.ps1 renamed to plugins/plaster/module/1.1.0-c/NewPlasterManifest.ps1

File renamed without changes.

0 commit comments

Comments
 (0)