Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4dba81b

Browse files
authored
Add dartExecutable to DartDevelopmentServiceConfiguration. (#2814)
More context: #2813
1 parent 4e1e7da commit 4dba81b

5 files changed

Lines changed: 7 additions & 3 deletions

File tree

dwds/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 27.1.0-wip
1+
## 27.1.0
22

33
- Add `appName` to `DartDevelopmentServiceConfiguration`.
4+
- Add `dartExecutable` to `DartDevelopmentServiceConfiguration`.
45

56
## 27.0.1
67

dwds/lib/src/config/tool_configuration.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,15 @@ class DartDevelopmentServiceConfiguration {
5858
this.serveDevTools = true,
5959
this.devToolsServerAddress,
6060
this.appName,
61+
this.dartExecutable,
6162
});
6263

6364
final bool enable;
6465
final int? port;
6566
final bool serveDevTools;
6667
final Uri? devToolsServerAddress;
6768
final String? appName;
69+
final String? dartExecutable;
6870
}
6971

7072
/// Debug settings for the connected app.

dwds/lib/src/services/debug_service.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ abstract class DebugService<T extends ProxyService> {
136136
),
137137
devToolsServerAddress: ddsConfig.devToolsServerAddress,
138138
serveDevTools: ddsConfig.serveDevTools,
139+
dartExecutable: ddsConfig.dartExecutable,
139140
);
140141
return _dds!;
141142
}

dwds/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dwds/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dwds
22
# Every time this changes you need to run `dart run build_runner build`.
3-
version: 27.1.0-wip
3+
version: 27.1.0
44

55
description: >-
66
A service that proxies between the Chrome debug protocol and the Dart VM

0 commit comments

Comments
 (0)