Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Drop unneeded dep on pkg:test #98

Merged
merged 1 commit into from
Dec 1, 2023
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 .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.dart_tool
.packages
pubspec.lock
test/web/index.dart.js.deps
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.1.5-wip

- Drop unneeded dependency on `package:js`.

## 4.1.4

- Fix incorrect cast causing failure with `dart2wasm`.
Expand Down
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ analyzer:

linter:
rules:
- avoid_returning_null
- avoid_unused_constructor_parameters
- cancel_subscriptions
- literal_only_boolean_expressions
Expand Down
3 changes: 1 addition & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sse
version: 4.1.4
version: 4.1.5-wip
description: >-
Provides client and server functionality for setting up bi-directional
communication through Server Sent Events (SSE) and corresponding POST
Expand All @@ -12,7 +12,6 @@ environment:
dependencies:
async: ^2.0.8
collection: ^1.0.0
js: ^0.6.4
logging: ^1.0.0
pool: ^1.5.0
shelf: ^1.1.0
Expand Down
Loading