OLD | NEW |
| 1 ## 0.5.0-dev |
| 2 |
| 3 * The `InitializePluginTransformer` is gone in favor of a new |
| 4 `InitializerPlugin` class which you can pass a list of to the |
| 5 `InitializeTransformer`. These plugins now have access to the fully resolved ast |
| 6 nodes and can directly control what is output in the bootstrap file. |
| 7 |
1 ## 0.4.0 | 8 ## 0.4.0 |
2 | 9 |
3 Lots of transformer updates: | 10 Lots of transformer updates: |
4 | 11 |
5 * The `new_entry_point` option is gone. The bootstrapped file will now always | 12 * The `new_entry_point` option is gone. The bootstrapped file will now always |
6 just be the original name but `.dart` will be replaced with `.initialize.dart`. | 13 just be the original name but `.dart` will be replaced with `.initialize.dart`. |
7 * The `html_entry_point` option is gone, and the file extension is now used to | 14 * The `html_entry_point` option is gone, and the file extension is now used to |
8 detect if it is an html or dart file. You should no longer list the dart file | 15 detect if it is an html or dart file. You should no longer list the dart file |
9 contained in the html file. Effectively resolves | 16 contained in the html file. Effectively resolves |
10 [13](https://github.com/dart-lang/initialize/issues/13). | 17 [13](https://github.com/dart-lang/initialize/issues/13). |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 49 |
43 ## 0.1.0+1 | 50 ## 0.1.0+1 |
44 | 51 |
45 Quick fix for the transformer on windows. | 52 Quick fix for the transformer on windows. |
46 | 53 |
47 ## 0.1.0 | 54 ## 0.1.0 |
48 | 55 |
49 Initial beta release. There is one notable missing feature in the release | 56 Initial beta release. There is one notable missing feature in the release |
50 regarding constructor arguments, see | 57 regarding constructor arguments, see |
51 [5](https://github.com/dart-lang/initialize/issues/5). | 58 [5](https://github.com/dart-lang/initialize/issues/5). |
OLD | NEW |