mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-13 19:07:10 +00:00
f117aaccc6
Index PowerShell .psd1 manifests + emit Import-Module/dot-source edges (closes #1331). Builds on the shipped .psm1 support. Validated: full suite 2107 passed, 18 new tests. Thanks @geektan123.
14 lines
474 B
PowerShell
14 lines
474 B
PowerShell
@{
|
|
RootModule = 'MyModule.psm1'
|
|
ModuleVersion = '1.0.0'
|
|
GUID = 'aaaabbbb-cccc-dddd-eeee-ffffffffffff'
|
|
Author = 'Test Author'
|
|
Description = 'A sample module manifest for graphify tests.'
|
|
NestedModules = @('Helpers.psm1', 'Logger.psm1')
|
|
RequiredModules = @(
|
|
'PSReadLine',
|
|
@{ ModuleName = 'Pester'; ModuleVersion = '5.0' }
|
|
)
|
|
FunctionsToExport = @('Get-Data', 'Process-Items')
|
|
}
|