webdev
webdev copied to clipboard
A CLI for Dart web development.
In https://github.com/dart-lang/webdev/pull/2388 we switched to connecting to DDS instead of directly to the VMService so that DDS can handle the service extensions. However, the test checking that the `DEBUGGER_READY` and...
https://github.com/dart-lang/pub/pull/4186 changed the error message if a pubspec yaml file can't be found. Once this change is on a Dart dev branch, we can enable the webdev integration test that...
It seems like when we hit a breakpoint, we are downloading a copy of the source instead of mapping it to a local source on disk. See for more details...
From flutter `stable/3.19.3` which has `dwds: 23.0.0+1`: https://github.com/flutter/flutter/blob/3.19.3/packages/flutter_tools/pubspec.yaml#L17 ``` RPCError: ext.flutter.debugDumpApp: (-32603) Unexpected DWDS error for callServiceExtension: Unexpected error from chrome devtools:text: Uncaught (in promise)exception: preview: null description: null type:...
In Intellij, when inspecting a `static` member, DWDS throws an error: https://github.com/flutter/flutter-intellij/issues/7228#issuecomment-1984641063 For VS Code and Flutter DevTools, we don't show static members for web apps (we also don't show...
Microsoft Windows [Version 6.1.7601] Dart SDK 2.16.1 Chrome Version 98.0.4758.102 (Official Build) (64-bit) IntelliJ IDEA 2021.3.2 (Community Edition) Build #IC-213.6777.52, built on January 28, 2022 Runtime version: 11.0.13+7-b1751.25 amd64 VM:...
Given a simple Dart web app created with `dart create -t web` and the code updated to: ```dart import 'dart:html'; Future main() async { // TODO: Remove this delay when...
Given a simple Dart web app created with `dart create -t web` and the code updated to: ```dart import 'dart:html'; Future main() async { // TODO: Remove this delay when...
Currently the `reload_tests` only work when using `BuildRunner` with the `RequireStrategy`. This is because only `BuildRunner` outputs a stream of build events that the test can use to check if...
Here is the [relevant code that was copied to dwds](https://github.com/dart-lang/build/blob/c88db16df8eab435a0ee74ecba65c39beda0a9e1/build_web_compilers/lib/src/dev_compiler_bootstrap.dart#L495-L504). Here is the code in dwds: https://github.com/dart-lang/webdev/blob/3ad544e2c4d4dff5a4cb3e059f72cf075c156288/dwds/lib/src/loaders/require.dart#L36-L46 We got a report from a user seeing this issue (and I was...