File tree Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## Dart Debug Extension
2
+
3
+ The implementation of the [ Dart Debug Extension] [ ] for Chrome,
4
+ that enables debugging Dart web apps with [ Dart DevTools] [ ] by
5
+ integrating with [ ` webdev ` ] [ ] through [ DWDS] [ ] .
6
+
7
+ [ Dart Debug Extension ] : https://dart.dev/to/web-debug-extension
8
+ [ Dart DevTools ] : https://dart.dev/tools/dart-devtools
9
+ [ `webdev` ] : https://dart.dev/tools/webdev
10
+ [ DWDS ] : https://pub.dev/packages/dwds
Original file line number Diff line number Diff line change 1
1
name : mv3_extension
2
2
publish_to : none
3
3
version : 2.1.4
4
- homepage : https://github.com/dart-lang/webdev
5
4
description : >-
6
5
A Chrome extension for Dart debugging.
7
6
Original file line number Diff line number Diff line change 1
1
# Shared directory
2
2
3
- The files in this directory are shared between DWDS and external packages (e.g. ,
4
- the Dart Debug Extension).
3
+ The files in this directory are shared between DWDS and external packages,
4
+ such as the [ Dart Debug Extension] ( https://dart.dev/to/web-debug-extension ) .
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ Future<void>? main() {
163
163
if (! event.success) {
164
164
final alert = 'DevTools failed to open with:\n ${event .error }' ;
165
165
if (event.promptExtension && window.confirm (alert)) {
166
- window.open ('https://goo.gle/dart -debug-extension' , '_blank' );
166
+ window.open ('https://dart.dev/to/web -debug-extension' , '_blank' );
167
167
} else {
168
168
window.alert (alert);
169
169
}
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ Usage: webdev serve [arguments] [<directory>[:<port>]]...
49
49
+ D / Option + D). This also enables
50
50
--launch-in-chrome.
51
51
--[no-]debug-extension Enable the backend for the Dart Debug
52
- Extension.
52
+ Extension. Learn more at
53
+ dart.dev/to/web-debug-extension.
53
54
--[no-]injected-client Whether or not to inject the
54
55
client.js script in web apps. This is
55
56
required for all debugging related
Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ refresh: Performs a full page refresh.
35
35
help: 'Enable the launching of DevTools (Alt + D / Option + D). '
36
36
'This also enables --$launchInChromeFlag .' )
37
37
..addFlag (debugExtensionFlag,
38
- help: 'Enable the backend for the Dart Debug Extension.' )
38
+ help: 'Enable the backend for the Dart Debug Extension. '
39
+ 'Learn more at dart.dev/to/web-debug-extension.' )
39
40
..addFlag (enableInjectedClientFlag,
40
41
help: 'Whether or not to inject the client.js script in web apps. This '
41
42
'is required for all debugging related features, but may interact '
You can’t perform that action at this time.
0 commit comments