File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.5.13]
4+
5+ - Released @ 4/2025 (UTC)
6+ - fix: Fix import issue
7+
38## [ 0.5.12]
49
510- Released @ 3/2025 (UTC)
Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ Future<void> genIndexes(
9494 final templateData = < String , String > {};
9595 for (final template in templates) {
9696 _print (printWhite, 'Reading template at: $template ...' );
97- final result = await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
97+ final result =
98+ await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
9899
99100 if (result.isErr ()) {
100101 spinner.stop ();
Original file line number Diff line number Diff line change @@ -96,7 +96,8 @@ Future<void> genIndexesTs(
9696 final templateData = < String , String > {};
9797 for (final template in templates) {
9898 _print (printWhite, 'Reading template at: $template ...' );
99- final result = await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
99+ final result =
100+ await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
100101
101102 if (result.isErr ()) {
102103 spinner.stop ();
You can’t perform that action at this time.
0 commit comments