Skip to content

Commit bee9882

Browse files
author
github-actions
committed
Prepare version 0.5.15
1 parent 3bf9ce0 commit bee9882

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-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.15]
4+
5+
- Released @ 6/2025 (UTC)
6+
- chore: Update dependencies
7+
38
## [0.5.14]
49

510
- Released @ 5/2025 (UTC)

lib/src/gen_indexes.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ Future<void> genIndexes(
9696
final templateData = <String, String>{};
9797
for (final template in templates) {
9898
_print(Log.printWhite, 'Reading template at: $template...');
99-
final result = await MdTemplateUtility.i.readTemplateFromPathOrUrl(template).value;
99+
final result = await MdTemplateUtility.i
100+
.readTemplateFromPathOrUrl(template)
101+
.value;
100102

101103
if (result.isErr()) {
102104
spinner.stop();

lib/src/gen_indexes_ts.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ Future<void> genIndexesTs(
9898
final templateData = <String, String>{};
9999
for (final template in templates) {
100100
_print(Log.printWhite, 'Reading template at: $template...');
101-
final result = await MdTemplateUtility.i.readTemplateFromPathOrUrl(template).value;
101+
final result = await MdTemplateUtility.i
102+
.readTemplateFromPathOrUrl(template)
103+
.value;
102104

103105
if (result.isErr()) {
104106
spinner.stop();

0 commit comments

Comments
 (0)