Skip to content

Commit d2c02dc

Browse files
author
github-actions
committed
Prepare version 0.5.13
1 parent 445a236 commit d2c02dc

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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)

lib/src/gen_indexes.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

lib/src/gen_indexes_ts.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)