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
2 changes: 1 addition & 1 deletion packages/dart_frog_web_socket/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include: package:very_good_analysis/analysis_options.4.0.0.yaml
include: package:very_good_analysis/analysis_options.5.0.0.yaml
6 changes: 3 additions & 3 deletions packages/dart_frog_web_socket/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ issue_tracker: https://github.com/VeryGoodOpenSource/dart_frog/issues
documentation: https://dartfrog.vgv.dev/docs/overview

environment:
sdk: ">=2.19.0 <3.0.0"
sdk: ">=3.0.0 <4.0.0"

dependencies:
dart_frog: ^0.3.0
shelf_web_socket: ^1.0.3
web_socket_channel: ^2.0.0

dev_dependencies:
http: ^0.13.5
http: ^1.0.0
mocktail: ^0.3.0
test: ^1.19.2
very_good_analysis: ^4.0.0
very_good_analysis: ^5.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void main() {
'localhost',
0,
);
url = Uri.http('localhost:${server.port}', '');
url = Uri.http('localhost:${server.port}');
});

tearDown(() => server.close());
Expand Down Expand Up @@ -164,7 +164,7 @@ void main() {
'localhost',
0,
);
url = Uri.http('localhost:${server.port}', '');
url = Uri.http('localhost:${server.port}');
});

tearDown(() => server.close());
Expand Down