- 14 Jul, 2023 1 commit
-
-
Pavel Mazhnik authored
Fixed types for `_getNewServiceWorker` and `_waitForServiceWorkerActivation` functions. These functions currently expect a Promise as an argument, but we're actually passing in an already resolved value: ```js .then(this._getNewServiceWorker) .then(this._waitForServiceWorkerActivation); ```
-
- 13 Jul, 2023 1 commit
-
-
Mouad Debbar authored
- `ui_web.warmupEngine` - `ui_web.setPluginHandler` - `ui_web.debugEmulateFlutterTesterEnvironment`
-
- 23 Jun, 2023 1 commit
-
-
David Iglesias authored
Flutter web uses requireJS in `debug` mode to assemble a DDC-compiled app from a bunch of small files ("modules"). This caused that `canvaskit.js` (and all other modules that used a browserify-like loading header) didn't work because they attempted to use the `define` function provided by Flutter's instance of `requireJS` (which kept the defined modules private, rather than as globals on the page, as the users of the JS expected). A [fix](https://github.com/flutter/engine/pull/27342) was added to `flutter/engine` to trick loaders into *not* using the `requireJS` module loader, but a recent change in the fix's js-interop layer *subtly* changed its JS output on the page (objects went from `undefined` to `null`), causing this: * https://github.com/flutter/flutter/issues/126131 (and others) This PR hides a bit of code that is commonly used by module loaders to decide that they may use the `define` function provided by requireJS (so the engine workaround can be removed). ## Next steps * https://github.com/flutter/engine/pull/42941 ## Issues Partially addresses: https://github.com/flutter/flutter/issues/126131 (and others) ## Tests * Added a unit test to ensure the `delete` stays * Manually tested with the Gallery app in `debug` mode with a bunch of user-supplied scripts that currently fail to load. * Also tested hot restart as suggested by @nshahan
-
- 26 May, 2023 1 commit
-
-
Nate Bosch authored
Replace imports of `src/remote_listener.dart` with `backend.dart` which exports `RemoteListener`. Remove the unused imports of `src/backend/stack_trace_formatter.dart` (no uses of `StackTraceFormatter`) and `src/backend/suite_channel_manager.dart` (no uses of `SuiteChannelManager`).
-
- 15 May, 2023 1 commit
-
-
Tomasz Gucio authored
-
- 10 May, 2023 1 commit
-
-
Kevin Moore authored
Filtering on 'true' omitted non-bool values
-
- 08 May, 2023 1 commit
-
-
Kevin Moore authored
Missing "tick"
-
- 04 May, 2023 1 commit
-
-
Kevin Moore authored
Allows controlling a broader set of variables than just on/off. Also make wasm-opt "full" the default
-
- 03 May, 2023 1 commit
-
-
Kevin Moore authored
Also fixed some comments
-
- 24 Apr, 2023 1 commit
-
-
Kevin Moore authored
-
- 21 Apr, 2023 1 commit
-
-
Kevin Moore authored
Addresses part of https://github.com/flutter/flutter/issues/125164
-
- 19 Apr, 2023 1 commit
-
-
Kevin Moore authored
Fixes https://github.com/flutter/flutter/issues/125085
-
- 14 Apr, 2023 2 commits
-
-
Jackson Gardner authored
This fixes https://github.com/flutter/flutter/issues/124159 Adds the command line argument `--wasm-opt` to optimize the web assembly output.
-
Kevin Moore authored
flutter-tool: enum cleanup
-
- 12 Apr, 2023 1 commit
-
-
Kevin Moore authored
flutter_tools: Flutter Web CLI cleanup
-
- 11 Apr, 2023 1 commit
-
-
Kevin Moore authored
Add omit-type-checks flag for wasm builds
-
- 10 Apr, 2023 1 commit
-
-
Jackson Gardner authored
Add support to the flutter tool to compile against the skwasm renderer
-
- 06 Apr, 2023 5 commits
-
-
Kevin Moore authored
flutter tool: log dart2wasm vs dart2js as appropriate during build
-
Zachary Anderson authored
Revert "flutter tool: log dart2wasm vs dart2js as appropriate during build"
-
Kevin Moore authored
flutter tool: log dart2wasm vs dart2js as appropriate during build
-
Kevin Moore authored
flutter_tool: add and use WebCompilerConfig
-
Kevin Moore authored
-
- 05 Apr, 2023 1 commit
-
-
Jenn Magder authored
Add tools test for buildWeb compilation
-
- 22 Mar, 2023 1 commit
-
-
Christopher Fujino authored
Revert "[flutter_tools] Remove sound null safety flag (#123031)"
-
- 20 Mar, 2023 1 commit
-
-
Christopher Fujino authored
[flutter_tools] Remove sound null safety flag #2
-
- 17 Mar, 2023 2 commits
-
-
Christopher Fujino authored
This reverts commit 7c3088cf.
-
Christopher Fujino authored
[flutter_tools] Remove sound null safety flag
-
- 08 Mar, 2023 1 commit
-
-
Mouad Debbar authored
Revert "[web:tools] always use CanvasKit from the cache when building web apps (#93002)"
-
- 01 Mar, 2023 1 commit
-
-
Kevin Moore authored
[flutter_tool] advertise the default value for --dart2js-optimization
-
- 28 Feb, 2023 1 commit
-
- 27 Feb, 2023 3 commits
-
-
Michael Goderbauer authored
Revert "Reland "Remove references to Observatory (#118577)""
-
Christopher Fujino authored
Revert "[flutter_tools] show web-server in flutter devices"
-
- 24 Feb, 2023 1 commit
-
-
Christopher Fujino authored
[flutter_tools] show web-server in flutter devices
-
- 23 Feb, 2023 1 commit
-
-
Lioness100 authored
* Fix typos * lowercase animated & opacity * Undo typo fix --------- Co-authored-by:
Michael Goderbauer <goderbauer@google.com>
-
- 21 Feb, 2023 1 commit
-
-
David Iglesias authored
* Allow any JS file in flutter loader. * Nag only if service worker API is completely unavailable. * Add info about Secure Contexts if that may be the reason why serviceworker is not available. * Update sanity test. * If service worker settings are null, do not even check if the API is available.
-
- 17 Feb, 2023 2 commits
-
-
Ian Hickson authored
* lerp documentation * Remove Note, Note That from repo * Improve BorderSide documentation. * apply review comments
-
Casey Hillers authored
This reverts commit 2df140f4.
-
- 13 Feb, 2023 1 commit
-
-
Ben Konyi authored
Observatory is being deprecated for Dart 3.0 so it should no longer be referenced in tooling messaging / flags. See https://github.com/dart-lang/sdk/issues/50233
-
- 10 Feb, 2023 1 commit
-
-
Mouad Debbar authored
This reverts commit 0fb4406c.
-