Skip to content

Commit 32b712d

Browse files
committed
+Update dependencies
1 parent 5fd7c0e commit 32b712d

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<a href="https://www.buymeacoffee.com/dev_cetera" target="_blank"><img align="right" src="https://cdn.buymeacoffee.com/buttons/default-orange.png" height="48"></a>
2-
<a href="https://discord.gg/gEQ8y2nfyX" target="_blank"><img align="right" src="https://raw.githubusercontent.com/dev-cetera/resources/refs/heads/main/assets/discord_icon/discord_icon.svg" height="48"></a>
2+
<a href="https://discord.gg/gEQ8y2nfyX" target="_blank"><img align="right" src="https://raw.githubusercontent.com/dev-cetera/resources/refs/heads/main/assets/icons/discord_icon/discord_icon.svg" height="48"></a>
33

44
Dart & Flutter Packages by dev-cetera.com & contributors.
55

lib/src/get_path_combinations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class GetPathCombinations extends Equatable {
4949
List<Set<String>> pathSets,
5050
Set<String> pathPatterns,
5151
) {
52-
return powerset(pathSets, (a, b) => p.normalize(p.join(a, b)))
52+
return cartesianProduct(pathSets, (a, b) => p.normalize(p.join(a, b)))
5353
.map((e) => matchesAnyPathPattern(e, pathPatterns) ? e : null)
5454
.whereType<String>()
5555
.toSet();

lib/src/utilities/path_utility.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
//.title~
1212

13-
import 'package:df_collection/df_collection.dart' show TakeLastOnIterableX;
13+
import 'package:df_collection/df_collection.dart';
1414
import 'package:path/path.dart' as p;
1515

1616
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

pubspec.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repository: https://github.com/dev-cetera/df_gen_core
1616
funding:
1717
- https://www.buymeacoffee.com/dev_cetera
1818
description: A package that provides core utilities for practical code generation.
19-
version: 0.6.15
19+
version: 0.6.16
2020

2121
## -----------------------------------------------------------------------------
2222

@@ -26,12 +26,12 @@ environment:
2626
## -----------------------------------------------------------------------------
2727

2828
dependencies:
29-
df_collection: ^0.9.3
30-
df_config: ^0.7.3
31-
df_log: ^0.3.17
32-
df_safer_dart: ^0.15.2
33-
df_string: ^0.2.5
34-
df_type: ^0.12.3
29+
df_collection: ^0.9.8
30+
df_config: ^0.7.5
31+
df_log: ^0.3.19
32+
df_safer_dart: ^0.16.3
33+
df_string: ^0.2.7
34+
df_type: ^0.14.2
3535
analyzer: ^7.4.5
3636
args: ^2.7.0
3737
collection: ^1.19.1
@@ -45,4 +45,6 @@ dependencies:
4545

4646
dev_dependencies:
4747
lints: ^6.0.0
48+
custom_lint: ^0.7.5
49+
df_safer_dart_lints: ^0.3.2
4850

0 commit comments

Comments
 (0)