Skip to content

Commit e5178cc

Browse files
committed
Point to tooling redirect for debug extension
1 parent e93891f commit e5178cc

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

dwds/debug_extension/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

dwds/debug_extension/pubspec.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: mv3_extension
22
publish_to: none
33
version: 2.1.4
4-
homepage: https://github.com/dart-lang/webdev
54
description: >-
65
A Chrome extension for Dart debugging.
76

dwds/lib/shared/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Shared directory
22

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).

dwds/web/client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Future<void>? main() {
167167
if (!event.success) {
168168
final alert = 'DevTools failed to open with:\n${event.error}';
169169
if (event.promptExtension && window.confirm(alert)) {
170-
window.open('https://goo.gle/dart-debug-extension', '_blank');
170+
window.open('https://dart.dev/to/web-debug-extension', '_blank');
171171
} else {
172172
window.alert(alert);
173173
}

webdev/lib/src/command/serve_command.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ refresh: Performs a full page refresh.
3535
help: 'Enable the launching of DevTools (Alt + D / Option + D). '
3636
'This also enables --$launchInChromeFlag.')
3737
..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 https://dart.dev/to/web-debug-extension.')
3940
..addFlag(enableInjectedClientFlag,
4041
help: 'Whether or not to inject the client.js script in web apps. This '
4142
'is required for all debugging related features, but may interact '

0 commit comments

Comments
 (0)