Skip to content

Commit 060894c

Browse files
committed
+Update dependencies
1 parent 02100a4 commit 060894c

4 files changed

Lines changed: 34 additions & 19 deletions

File tree

.gitignore

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,29 @@
1010
## ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
##.title~
1212

13-
**/.dart_tool/
13+
# MacOS.
1414
**/.DS_Store
15-
**/build/
16-
**/pubspec.lock
17-
**/.github/.git
18-
**/.metadata
15+
16+
# Dart & Flutter.
17+
**/.dart_tool/
1918
**/.flutter-plugins
2019
**/.flutter-plugins-dependencies
20+
**/.metadata
21+
**/.pub-cache/
22+
**/.pub/
23+
**/build/
2124
**/pubspec_overrides.yaml
25+
**/pubspec.lock
26+
**/custom_lint.log
27+
28+
# GitHub.
29+
**/.github/.git
2230

23-
# Don't support IntelliJ.
24-
**/*.iml
25-
**/*.idea/
31+
# Firebase.
32+
**/.firebase
33+
**/firebase-debug.log
2634

27-
# custom_lint
28-
**/custom_lint.log
35+
# Android
36+
/android/app/debug
37+
/android/app/profile
38+
/android/app/release

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Dart & Flutter Packages by dev-cetera.com & contributors.
1111

1212
---
1313

14+
[![banner](https://github.com/dev-cetera/df_safer_dart/blob/v0.15.1/doc/assets/banner.png?raw=true)](https://github.com/dev-cetera)
15+
1416
<!-- BEGIN _README_CONTENT -->
1517

1618
`df_di` is a lightweight, powerful "dependency injection" package for Dart and Flutter that makes your app modular, testable, and easy to maintain. It stops the confusion of finding and tracking services, like APIs or databases. With `df_di`, you store these services in "containers" that make them easy to access whenever you need them.

lib/src/_src.g.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export './entity/reserved_entities.dart';
1212
export './entity/type_entity.dart';
1313
export './entity/entity.dart';
1414
export './entity/unique_entity.dart';
15-
export 'ecs/ecs.dart';
15+
export './ecs/ecs.dart';
1616
export './services/polling_stream_service.dart';
1717
export './services/service.dart';
18-
export './services/stream_service.dart';
18+
export './services/stream_service.dart';

pubspec.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ name: df_di
1414
homepage: https://dev-cetera.com/
1515
repository: https://github.com/robmllze/df_di
1616
funding:
17-
- https://www.buymeacoffee.com/dev_cetera
17+
- https://www.buymeacoffee.com/dev_cetera
18+
- https://www.patreon.com/c/RobertMollentze
19+
- https://github.com/sponsors/robmllze
1820
description: A pragmatic dependency injection (DI) system, coupled with service classes for seamless state management in Dart.
19-
version: 0.15.1
21+
version: 0.15.2
2022
topics:
2123
- get-it
2224
- dependency-injection
@@ -32,19 +34,20 @@ environment:
3234
## -----------------------------------------------------------------------------
3335

3436
dependencies:
35-
df_debouncer: ^0.4.15
36-
df_safer_dart: ^0.16.2
37-
df_type: ^0.14.1
38-
df_log: ^0.3.19
3937
collection: ^1.19.1
4038
meta: ^1.16.0
4139
equatable: ^2.0.7
4240

41+
df_debouncer: ^0.4.16
42+
df_safer_dart: ^0.17.0
43+
df_type: ^0.14.2
44+
df_log: ^0.3.20
45+
4346
## -----------------------------------------------------------------------------
4447

4548
dev_dependencies:
4649
lints: ^6.0.0
4750
test: ^1.26.2
4851
custom_lint: ^0.7.5
49-
df_safer_dart_lints: ^0.3.2
52+
df_safer_dart_lints: ^0.3.3
5053

0 commit comments

Comments
 (0)