File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
- Added new Markdown processing functionality to address two Markdown linting issues:
15
15
- ` MD022/blanks-around-headings `
16
16
- ` MD040/fenced-code-language `
17
+ - Added more detailed error output to ` ImportModuleManifest `
17
18
- CI/CD Changes:
18
19
- Pester bumped from ` 5.6.1 ` to ` 5.7.1 `
19
20
- InvokeBuild bumped from ` 5.11.3 ` to ` 5.12.1 `
@@ -25,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
26
- Added new Markdown processing functionality to address two Markdown linting issues:
26
27
- ` MD022/blanks-around-headings `
27
28
- ` MD040/fenced-code-language `
29
+ - Added more detailed error output to ` ImportModuleManifest `
28
30
- Pester bumped from ` 5.6.1 ` to ` 5.7.1 `
29
31
- InvokeBuild bumped from ` 5.11.3 ` to ` 5.12.1 `
30
32
- PSScriptAnalyzer bumped from ` 1.22.0 ` to ` 1.23.0 `
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ Add-BuildTask ImportModuleManifest {
144
144
Import-Module $script :ModuleManifestFile - Force - PassThru - ErrorAction Stop
145
145
}
146
146
catch {
147
+ Write-Build Red " ...$_ `n "
147
148
throw ' Unable to load the project module'
148
149
}
149
150
Write-Build Green " ...$script :ModuleName imported successfully"
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ Add-BuildTask ImportModuleManifest {
177
177
Import-Module $script :ModuleManifestFile - Force - PassThru - ErrorAction Stop
178
178
}
179
179
catch {
180
+ Write-Build Red " ...$_ `n "
180
181
throw ' Unable to load the project module'
181
182
}
182
183
Write-Build Green " ...$script :ModuleName imported successfully"
Original file line number Diff line number Diff line change @@ -166,6 +166,7 @@ Add-BuildTask ImportModuleManifest {
166
166
Import-Module $script :ModuleManifestFile - Force - PassThru - ErrorAction Stop
167
167
}
168
168
catch {
169
+ Write-Build Red " ...$_ `n "
169
170
throw ' Unable to load the project module'
170
171
}
171
172
Write-Build Green " ...$script :ModuleName imported successfully"
You can’t perform that action at this time.
0 commit comments