Menu

[ffc328]: / CommitFusion.psm1  Maximize  Restore  History

Download this file

70 lines (64 with data), 3.3 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
67
68
69
70
using module libs\CommitFusion_class.psm1
using module libs\cmdlets\Get-CommitFusionModuleInstance.psm1
using module libs\cmdlets\New-CommitFusion.psm1
using module libs\cmdlets\New-Commit.psm1
using module libs\cmdlets\Get-CiSet.psm1
using module libs\cmdlets\Get-CommitTypes.psm1
using module libs\cmdlets\Get-Emoji.psm1
using module libs\cmdlets\Get-EmojiIndex.psm1
using module libs\cmdlets\Format-FusionMD.psm1
using module libs\cmdlets\Get-GitAutoVersion.psm1
using module libs\cmdlets\Update-ChangeLog.psm1
using module libs\cmdlets\Set-Commit.psm1
Export-ModuleMember -Function New-CommitFusion,
Get-CommitFusionModuleInstance,
New-Commit,
Get-CiSet,
Get-CommitTypes,
Get-Emoji,
Get-EmojiIndex,
Get-GitAutoVersion,
Format-FusionMD,
Update-Changelog,
Set-Commit
<#
---------------------------------------------------------------------------------------------------------------------------------------
! ___ _) | ____| _)
? | _ \ __ `__ \ __ `__ \ | __| | | | __| | _ \ __ \
? | ( | | | | | | | | | __| | | \__ \ | ( | | |
! \____| \___/ _| _| _| _| _| _| _| \__| _| \__,_| ____/ _| \___/ _| _|
---------------------------------------------------------------------------------------------------------------------------------------
? NOTES
This Module is still in development and is not ready for production use.
@Colorful comments vscode url:
- #? https://marketplace.visualstudio.com/items?itemName=bierner.colorful-comments
& CLASS: [CommitFusion]
* DESCRIPTION:
^_Conventional Commits
is a specification that defines a standard convention
for structuring commit messages in software development. It provides a
consistent format and semantic meaning to commit messages, making it
easier to understand the purpose and impact of each commit. Here are the
main properties defined by Conventional Commits:
&VALUES
^- Type parameter input validation parsed from commitfusion.json allows dynamic updating of the commit types
^- Scope (UserDefined) - Allows for user defined scopes
^- Description Default(commitfusion.json > DesCription or (user defined) - Allows for user defined descriptions))
^- Body
^- Notes(Default Body) - Change body to Notes
^- Breaking Changes
^- FeatureNotes
^- BugFixes
^- FeatureAddtions
^- Footer (gituser|user @ DateTime)
? DEPENDANCIES:
~ ColorTune - Embedded in this module
~ Write-Inexco #? Colortune Replaces this #TODO: Replace and use SimpleSpectreWrapper and ColorTune
? powerunicode - Embedded in this module
! SimpleSpectreWrapper - Embedded in this module
^ BUILD ENV---: BUILD: Powershellcore 7.3.1
^ SUPPORTED VERSIONS
Powerhshell 5.1^
Powershell 7.^
Powershellcore(linux) 7.^
#>