Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Dart
uses: dart-lang/setup-dart@v1.4
uses: dart-lang/setup-dart@v1.7
with:
sdk: ${{ matrix.sdk }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Dart
uses: dart-lang/setup-dart@v1.4
uses: dart-lang/setup-dart@v1.7
with:
sdk: stable

Expand Down
3 changes: 1 addition & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ linter:
# https://github.com/dart-lang/lints#migrating-from-packagepedantic
- always_declare_return_types
- prefer_single_quotes
- unawaited_futures
- unsafe_html
- unawaited_futures
3 changes: 1 addition & 2 deletions example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ linter:
# https://github.com/dart-lang/lints#migrating-from-packagepedantic
- always_declare_return_types
- prefer_single_quotes
- unawaited_futures
- unsafe_html
- unawaited_futures
2 changes: 1 addition & 1 deletion lib/dart_either.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
/// Because `Either` is right-biased, it is possible to define a `Monad` instance for it.
/// Since we only ever want the computation to continue in the case of [Right] (as captured by the right-bias nature),
/// we fix the left type parameter and leave the right one free. So, the map and flatMap methods are right-biased.
library dart_either;
library;

export 'src/binding.dart';
export 'src/dart_either.dart';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies:

dev_dependencies:
rxdart_ext: ^0.3.0
lints: ^3.0.0
lints: ^6.0.0
test: ^1.25.5

dependency_overrides:
Expand Down
Loading