Index: CHANGELOG.md |
diff --git a/CHANGELOG.md b/CHANGELOG.md |
index 7b8a311652b5465c17645a4d3e494473a5258dd9..2e4eb95dcdd51d7e8d34ed2abefa3f770201affb 100644 |
--- a/CHANGELOG.md |
+++ b/CHANGELOG.md |
@@ -76,6 +76,22 @@ entirely to allow inference to fill in the type. |
### Tool Changes |
* Pub |
+ * Added support for the Dart Development Compiler. There are two ways of |
+ opting in: |
nweiz
2017/05/25 19:54:13
Mention which pub commands are affected.
nweiz
2017/05/25 19:54:13
Nit: it would read easier in plain text to add som
jakemac
2017/05/25 21:35:36
Done.
jakemac
2017/05/25 21:35:36
Done.
|
+ * Use the new `--web-compiler` flag, which supports `dartdevc`, |
+ `dart2js` or `none` as options. This is the easiest way to try things |
+ out without changing the default. |
nweiz
2017/05/25 19:54:13
Provide some more detail here about what exact beh
jakemac
2017/05/25 21:35:36
Done.
|
+ * Add config to your pubspec. There is a new `web` key which supports a |
+ single key called `compiler`. This is a map of string to string, where |
+ the keys are modes and the values are the compiler to use in that |
+ mode. For example, to default to dartdevc in debug mode you can add |
+ the following to your pubspec: |
+ |
+ ```yaml |
+ web: |
+ compiler: |
+ debug: dartdevc |
+ ``` |
nweiz
2017/05/25 19:54:13
It's probably best to wait to mention this until i
jakemac
2017/05/25 21:35:36
I was just going to wait to merge this until it is
|
* `pub build` will use a failing exit code if there are errors in any |
transformer. |
* Allow publishing packages that depend on the Flutter SDK. |