Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Unified Diff: CHANGELOG.md

Issue 2910523002: update changelog to mention pub support for dartdevc (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698