Skip to content

Commit f27da90

Browse files
Remove reliance on Utilities
1 parent e952c04 commit f27da90

File tree

5 files changed

+0
-8
lines changed

5 files changed

+0
-8
lines changed

scripts/helpers/Build-PSModule.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
#>
99
[OutputType([void])]
1010
[CmdletBinding()]
11-
#Requires -Modules @{ ModuleName = 'GitHub'; ModuleVersion = '0.13.2' }
12-
#Requires -Modules @{ ModuleName = 'Utilities'; ModuleVersion = '0.3.0' }
1311
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
1412
'PSReviewUnusedParameter', '', Scope = 'Function',
1513
Justification = 'LogGroup - Scoping affects the variables line of sight.'

scripts/helpers/Build/Build-PSModuleManifest.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
Build-PSModuleManifest -SourceFolderPath 'C:\MyModule\src\MyModule' -OutputFolderPath 'C:\MyModule\build\MyModule'
1212
#>
1313
[CmdletBinding()]
14-
#Requires -Modules @{ ModuleName = 'GitHub'; ModuleVersion = '0.13.2' }
15-
#Requires -Modules @{ ModuleName = 'Utilities'; ModuleVersion = '0.3.0' }
1614
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
1715
'PSAvoidLongLines', '', Scope = 'Function',
1816
Justification = 'Easier to read the multi ternery operators in a single line.'

scripts/helpers/Build/Get-PSModuleAliasesToExport.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
Get-PSModuleAliasesToExport -SourceFolderPath 'C:\MyModule\src\MyModule'
1111
#>
1212
[CmdletBinding()]
13-
#Requires -Modules @{ ModuleName = 'Utilities'; ModuleVersion = '0.3.0' }
1413
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
1514
'PSAvoidUsingWriteHost', '', Scope = 'Function',
1615
Justification = 'Want to just write to the console, not the pipeline.'

scripts/helpers/Build/Get-PSModuleCmdletsToExport.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
Get-PSModuleCmdletsToExport -SourceFolderPath 'C:\MyModule\src\MyModule'
1111
#>
1212
[CmdletBinding()]
13-
#Requires -Modules @{ ModuleName = 'Utilities'; ModuleVersion = '0.3.0' }
1413
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
1514
'PSAvoidUsingWriteHost', '', Scope = 'Function',
1615
Justification = 'Want to just write to the console, not the pipeline.'

scripts/helpers/Build/Update-PSModuleManifestAliasesToExport.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
'PSAvoidUsingWriteHost', '', Scope = 'Function',
1616
Justification = 'Want to just write to the console, not the pipeline.'
1717
)]
18-
#Requires -Modules @{ ModuleName = 'GitHub'; ModuleVersion = '0.13.2' }
19-
#Requires -Modules @{ ModuleName = 'Utilities'; ModuleVersion = '0.3.0' }
2018
[CmdletBinding()]
2119
param(
2220
# Name of the module.

0 commit comments

Comments
 (0)