mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-14 03:17:28 +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.
11 lines
168 B
PowerShell
11 lines
168 B
PowerShell
Import-Module Foo
|
|
Import-Module -Name Bar.psm1
|
|
. ./Shared.psm1
|
|
. .\Utils.ps1
|
|
|
|
function Invoke-Main {
|
|
Import-Module InnerMod
|
|
. ./InnerShared.psm1
|
|
Get-Data
|
|
}
|