Skip to content

Commit f0f32d6

Browse files
author
github-actions
committed
Prepare version 0.5.7
1 parent fae4d11 commit f0f32d6

File tree

5 files changed

+11
-2
lines changed

5 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.7]
4+
5+
- Released @ 12/2024 (UTC)
6+
- chore: Internal updates and update readme
7+
38
## [0.5.5]
49

510
- Released @ 12/2024 (UTC)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

lib/src/gen_indexes.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ String _publicExports(
197197
bool Function(String filePath) test,
198198
String Function(String baseName) statementBuilder,
199199
) {
200-
final relativeFilePaths = filePaths.map((e) => p.relative(e, from: inputPath));
200+
final relativeFilePaths =
201+
filePaths.map((e) => p.relative(e, from: inputPath));
201202
final exportFilePaths = relativeFilePaths.where((e) => test(e));
202203
final statements = exportFilePaths.map(statementBuilder);
203204
return statements.join('\n');

lib/src/gen_indexes_ts.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ String _publicExports(
193193
bool Function(String filePath) test,
194194
String Function(String baseName) statementBuilder,
195195
) {
196-
final relativeFilePaths = filePaths.map((e) => p.relative(e, from: inputPath));
196+
final relativeFilePaths =
197+
filePaths.map((e) => p.relative(e, from: inputPath));
197198
final exportFilePaths = relativeFilePaths.where((e) => test(e));
198199
final statements = exportFilePaths.map(statementBuilder);
199200
return statements.join('\n');

0 commit comments

Comments
 (0)