Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Commit 96397cc

Browse files
author
github-actions
committed
Prepare release for version 0.59.0
1 parent f701e7f commit 96397cc

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [0.59.0]
44

5-
- Released @ 2024-06-24 03:56:50.412696Z
5+
- Released @ 2024-06-24 07:37:22.630883Z
66
- Fix dependencies
77

88
## [0.58.1]

lib/src/core/src/paths.dart

+4-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,10 @@ bool isPrivateFileName(String filePath) {
109109
String endType,
110110
) {
111111
final fileName = getBaseName(filePath);
112-
final a = begType.isEmpty ? true : fileName.startsWith('${begType.toLowerCase()}_');
113-
final b = endType.isEmpty ? true : fileName.endsWith('.$endType'.toLowerCase());
112+
final a =
113+
begType.isEmpty ? true : fileName.startsWith('${begType.toLowerCase()}_');
114+
final b =
115+
endType.isEmpty ? true : fileName.endsWith('.$endType'.toLowerCase());
114116
final c = a && b;
115117
return (status: c, fileName: fileName);
116118
}

0 commit comments

Comments
 (0)