File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.5.12]
4+
5+ - Released @ 3/2025 (UTC)
6+ - fix: Small fix
7+
38## [ 0.5.11]
49
510- Released @ 3/2025 (UTC)
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ Future<void> genIndexes(
9797 final templateData = < String , String > {};
9898 for (final template in templates) {
9999 _print (printWhite, 'Reading template at: $template ...' );
100- final result = await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
100+ final result =
101+ await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
101102
102103 if (result.isErr ()) {
103104 spinner.stop ();
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Future<void> genIndexesTs(
6565 );
6666 exit (ExitCodes .FAILURE .code);
6767 }
68-
68+
6969 // ---------------------------------------------------------------------------
7070
7171 final spinner = Spinner ();
@@ -99,7 +99,8 @@ Future<void> genIndexesTs(
9999 final templateData = < String , String > {};
100100 for (final template in templates) {
101101 _print (printWhite, 'Reading template at: $template ...' );
102- final result = await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
102+ final result =
103+ await MdTemplateUtility .i.readTemplateFromPathOrUrl (template).value;
103104
104105 if (result.isErr ()) {
105106 spinner.stop ();
You can’t perform that action at this time.
0 commit comments