Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
dart: [3.3, 3.9]
dart: [3.6, 3.12]
package: [cli_tools, config]
runs-on: ubuntu-latest
defaults:
Expand All @@ -34,16 +34,16 @@ jobs:
strategy:
fail-fast: false
matrix:
dart: [3.3, 3.9]
dart: [3.6, 3.12]
package: [cli_tools, config]
platform: [ubuntu-latest]
include:
- package: cli_tools
platform: windows-latest
dart: 3.3
dart: 3.6
- package: cli_tools
platform: macos-latest
dart: 3.3
dart: 3.6
runs-on: ${{ matrix.platform }}
defaults:
run:
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@

.idea/
*.iml

pubspec.lock
1 change: 1 addition & 0 deletions melos.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This file is used for melos 6.3.3, but deprecated for users of melos 7.x.
name: cli_tools_repo

packages:
Expand Down
4 changes: 3 additions & 1 deletion packages/cli_tools/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ topics:
- command-line
- dart

resolution: workspace

environment:
sdk: ^3.3.0
sdk: ^3.6.0

dependencies:
args: ^2.7.0
Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/pubspec_overrides.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions packages/cli_tools/test/logger/progress_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:test/test.dart';

Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/test/prompts/confirm_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:test/test.dart';

Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/test/prompts/input_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:test/test.dart';

Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/test/prompts/multiple_select_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:cli_tools/src/prompts/key_codes.dart' show KeyCodes;
import 'package:cli_tools/src/prompts/select.dart' show underline;
Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/test/prompts/select_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:cli_tools/src/prompts/key_codes.dart' show KeyCodes;
import 'package:cli_tools/src/prompts/select.dart' show underline;
Expand Down
3 changes: 0 additions & 3 deletions packages/cli_tools/test/std_out_logger_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// ignore required for Dart 3.3
// ignore_for_file: unused_local_variable

import 'package:cli_tools/cli_tools.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 0 additions & 2 deletions packages/cli_tools/test/test_utils/mock_stdout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ class MockStdout implements Stdout {
Encoding encoding = utf8;

@override
// ignore required for Dart 3.3
// ignore: override_on_non_overriding_member
String lineTerminator = '\n';

String get output => _buffer.toString();
Expand Down
4 changes: 3 additions & 1 deletion packages/config/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ topics:
- configuration
- yaml

resolution: workspace

environment:
sdk: ^3.3.0
sdk: ^3.6.0

dependencies:
args: ^2.7.0
Expand Down
Loading
Loading