-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepoHerd.psd1
More file actions
66 lines (63 loc) · 2.61 KB
/
RepoHerd.psd1
File metadata and controls
66 lines (63 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@{
# Module manifest for RepoHerd
RootModule = 'RepoHerd.psm1'
ModuleVersion = '9.1.0'
GUID = '55dbb622-24f8-4f70-b16e-5412d436f94f'
Author = 'LS Instruments AG'
CompanyName = 'LS Instruments AG'
Copyright = '(c) LS Instruments AG. All rights reserved.'
Description = 'Multi-repository Git dependency manager with SemVer version resolution, recursive dependency discovery, and cross-platform SSH support. Clone and checkout multiple Git repositories to pinned versions from a single JSON config. An alternative to git submodules for managing shared libraries across repos.'
PowerShellVersion = '7.6'
FunctionsToExport = @(
'Initialize-RepoHerd',
'Write-ErrorWithContext',
'Invoke-WithErrorContext',
'Write-Log',
'ConvertTo-VersionPattern',
'Test-SemVerCompatibility',
'Get-CompatibleVersionsForPattern',
'Select-VersionFromIntersection',
'Get-RepositoryVersions',
'Get-SemVersionIntersection',
'Format-SemVersion',
'Test-DependencyConfiguration',
'Show-ErrorDialog',
'Show-ConfirmDialog',
'Test-GitInstalled',
'Test-GitLfsInstalled',
'Test-SshTransportAvailable',
'Get-RepositoryUrl',
'Get-HostnameFromUrl',
'Get-SshKeyForUrl',
'Set-GitSshKey',
'Get-GitTagDates',
'Resolve-TagsByDate',
'Reset-GitRepository',
'Get-AbsoluteBasePath',
'Get-TagIntersection',
'Get-TagUnion',
'Get-CustomDependencyFilePath',
'Invoke-PostCheckoutScript',
'Update-RepositoryDictionary',
'Update-SemVerRepository',
'Invoke-GitCheckout',
'Invoke-DependencyFile',
'Invoke-RecursiveDependencies',
'Read-CredentialsFile',
'Set-PostCheckoutScriptResult',
'Export-CheckoutResults',
'Show-Summary',
'Invoke-RepoHerd'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('Git', 'Dependency', 'SemVer', 'Checkout', 'MultiRepo', 'DevOps', 'Automation', 'SSH', 'CrossPlatform', 'DependencyManagement', 'VersionPinning', 'Repository', 'Submodules')
LicenseUri = 'https://github.com/LS-Instruments/RepoHerd/blob/main/LICENSE'
ProjectUri = 'https://github.com/LS-Instruments/RepoHerd'
ReleaseNotes = 'v9.1.0: Added Invoke-RepoHerd function for PowerShell Gallery users. Install-Module RepoHerd now provides a callable entry point.'
}
}
}