- 09 Aug, 2017 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/11539
-
- 14 Jul, 2017 1 commit
-
-
Siva Chandra authored
-
- 13 Jul, 2017 1 commit
-
-
Michael Goderbauer authored
Was broken by https://github.com/flutter/flutter/commit/dba29aa0fce684b201c6b03efc73ba607c7b507b, which apprently has been pushed directly to master without running through Travis?
-
- 12 Jul, 2017 1 commit
-
-
Siva Chandra authored
Fixes #9413. For more info on conditional imports, see https://github.com/munificent/dep-interface-libraries/blob/master/Proposal.md.
-
- 25 Apr, 2017 1 commit
-
-
Michael Goderbauer authored
* Do not lower-case paths during canonicalization. This breaks hot reload on some platfroms with case insensitive file systems. * Add unit tests
-
- 13 Mar, 2017 1 commit
-
-
Ian Hickson authored
It was resulting in weird situations where the tool would dump an error message and stack but not quit, or would fail hard but then just hang. Instead, specifically catch errors you expect. As an example of this, there's one error we expect from the DartDependencySetBuilder, so we catch that one, turn it into a dedicated exception class, then in the caller catch that specific exception.
-
- 07 Mar, 2017 1 commit
-
-
Michael Goderbauer authored
This implements the `DartDependencySetBuilder` completely in Dart instead of calling out to `sky_snapshot` (Linux/Mac) or `gen_snapshot` (Windows) and allows us to use the same code path on all supported host platforms. It also slightly reduces hot reload times on Linux from ~750ms to ~690ms for the unchanged flutter_gallery app and significantly reduces hot reload times on Windows from almost 1.5s to just slightly slower than on Linux. This change will also allow us to retire `sky_snapshot` completely in the future.
-
- 06 Mar, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 04 Mar, 2017 2 commits
-
-
Michael Goderbauer authored
-
Chris Bracken authored
-
- 02 Mar, 2017 1 commit
-
-
Michael Goderbauer authored
* Enable Hot Reload on Windows (backed by gen_snapshot) \o/ Two caveats: * Hot Reload on Windows is slower than on other platforms because gen_snapshot is slower then sky_snapshot * We currently cannot hot reload projects with spaces in the path * enable tests
-
- 01 Mar, 2017 1 commit
-
-
Michael Goderbauer authored
* Revert "Revert "Simplify path handling logic in dependency checker and devFS (#8414)" (#8467)" This reverts commit 96ba7f76. * Intentionally use a self-package URI in flutter_gallery * tests to catch problems with self-package imports
-
- 28 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
This reverts commit e7bde11c. Reason: broke hot reload when using "package:" style imports for sources within the same project.
-
- 27 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
* Simplify path handling logic in dependency checker and devFS Simplification will make it easier to port this to Windows. * Roll Engine to 0a7b177c330367904597a6129b3eb653d29dfca0
-
- 17 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
Artifacts are now located in a central place. This will enable us to downlaod artifacts when we need them (instead of downloading them all upfront). This also makes replacing sky_snapshot with gen_snapshot easier.
-
- 14 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 15 Dec, 2016 1 commit
-
-
John McCutchan authored
- [x] Introduce DependencyChecker which can determine if any dependencies have been modified. - [x] Move the DartDependencyBuilder into a separate file. - [x] Add unit tests for DartDependencyBuilder. - [x] Add unit tets for DependencyChecker Part of #7014
-