@@ -17,6 +17,7 @@ class SubmoduleBuilder {
1717 ! this . submodule . remoteName ||
1818 ! this . submodule . previousShortCommitSha ||
1919 ! this . submodule . previousCommitSha ||
20+ ! this . submodule . previousCommitShaHasTag ||
2021 ! this . submodule . latestShortCommitSha ||
2122 ! this . submodule . latestCommitSha
2223 ) {
@@ -33,6 +34,7 @@ export const mdBookSubmodule = (
3334 remoteName : string = "catppuccin/mdBook" ,
3435 previousShortCommitSha : string = "a19a19b" ,
3536 previousCommitSha : string = "a19a19bd14f26c3bba311bbffc5a74710add5ac2" ,
37+ previousCommitShaHasTag : boolean = true ,
3638 previousTag : string = "v0.1.2" ,
3739 latestShortCommitSha : string = "a19a19b" ,
3840 latestCommitSha : string = "a19a19bd14f26c3bba311bbffc5a74710add5ac2"
@@ -44,6 +46,7 @@ export const mdBookSubmodule = (
4446 remoteName,
4547 previousShortCommitSha,
4648 previousCommitSha,
49+ previousCommitShaHasTag,
4750 previousTag,
4851 latestShortCommitSha,
4952 latestCommitSha,
@@ -57,6 +60,7 @@ export const vscodeIconsSubmodule = (
5760 remoteName : string = "catppuccin/vscode-icons" ,
5861 previousShortCommitSha : string = "71d98b8" ,
5962 previousCommitSha : string = "71d98b81bfdb6b8d3527037c3017eb07e6ec0621" ,
63+ previousCommitShaHasTag : boolean = true ,
6064 previousTag : string = "v1.14.0" ,
6165 latestShortCommitSha : string = "71d98b8" ,
6266 latestCommitSha : string = "71d98b81bfdb6b8d3527037c3017eb07e6ec0621"
@@ -68,6 +72,7 @@ export const vscodeIconsSubmodule = (
6872 remoteName,
6973 previousShortCommitSha,
7074 previousCommitSha,
75+ previousCommitShaHasTag,
7176 previousTag,
7277 latestShortCommitSha,
7378 latestCommitSha,
@@ -81,6 +86,7 @@ export const nvimSubmodule = (
8186 remoteName : string = "catppuccin/nvim" ,
8287 previousShortCommitSha : string = "774a4ed" ,
8388 previousCommitSha : string = "774a4ed9a69d0a2633da60f73aa63a8e23aacced" ,
89+ previousCommitShaHasTag : boolean = true ,
8490 previousTag : string = "v1.8.0" ,
8591 latestShortCommitSha : string = "774a4ed" ,
8692 latestCommitSha : string = "774a4ed9a69d0a2633da60f73aa63a8e23aacced"
@@ -92,6 +98,7 @@ export const nvimSubmodule = (
9298 remoteName,
9399 previousShortCommitSha,
94100 previousCommitSha,
101+ previousCommitShaHasTag,
95102 previousTag,
96103 latestShortCommitSha,
97104 latestCommitSha,
0 commit comments