Skip to content

Commit

Permalink
update devtools dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameri11 committed Sep 29, 2024
1 parent 6474578 commit ddedef3
Show file tree
Hide file tree
Showing 18 changed files with 1,303 additions and 1,277 deletions.
12 changes: 11 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,16 @@
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
},
{
"name": "DevTools Extension Tests (Chrome)",
"request": "launch",
"type": "dart",
"program": "packages/provider_devtools_extension/test",
"args": [
"--platform",
"chrome"
]
},
]
}
1 change: 1 addition & 0 deletions packages/provider/extension/devtools/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ name: provider
issueTracker: https://github.com/rrousselGit/provider/issues
version: 0.0.1
materialIconCodePoint: "0xe0b1"
requiresConnection: true
3 changes: 3 additions & 0 deletions packages/provider_devtools_extension/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release

# Ignore failure screenshots created by golden tests
test/failures
12 changes: 6 additions & 6 deletions packages/provider_devtools_extension/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
# This file should be version controlled and should not be manually edited.

version:
revision: "972d36c4efeee7e3bb16c050fd233389625a6470"
channel: "[user-branch]"
revision: "2663184aa79047d0a33a14a3b607954f8fdd8730"
channel: "stable"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 972d36c4efeee7e3bb16c050fd233389625a6470
base_revision: 972d36c4efeee7e3bb16c050fd233389625a6470
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: web
create_revision: 972d36c4efeee7e3bb16c050fd233389625a6470
base_revision: 972d36c4efeee7e3bb16c050fd233389625a6470
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730

# User provided section

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ void setServiceConnectionForProviderScreen(VmService service) {
/// this ensures that providers reload properly when the devtool is connected
/// to a different application.
final serviceProvider = StreamProvider<VmService>((ref) async* {
yield serviceManager.service!;
yield* _serviceConnectionStream;
});

Expand Down
Loading

0 comments on commit ddedef3

Please sign in to comment.