All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
0.5.0 (2018-01-06)
- reporter: add Angular error reporter (7ec561c)
0.4.0 (2018-01-05)
🎉 First Angular AOT support 🎉
- Angular
- Compilation using AOT compiler
- Support lazy-loading (AOT only)
- Preprocess templates and style using Parcel (
templateUrl
orstyleUrls
only) - Experimental incremental AOT build on watch mode
- Decorators are removed in AOT for smaller builds
- Options: you can now pass options to the plugin in
tsconfig.json
:{ "compilerOptions": {...}, // the plugin options "parcelAngularOptions": { // What compiler should we use when watching or serving "watch": "jit", // What compiler should we use when building (parcel build) "build": "aot" } }
0.2.5 (2017-12-21)
- resolve: correctly map directory indices (a543347)
0.2.4 (2017-12-19)
- mappings: check baseUrl before transform (10863f1)
0.2.3 (2017-12-15)
- mappings: fix es2015 import transformations (bc9e6a4)
- resolve: default moduleResolution to node (b0d111d)
0.2.2 (2017-12-15)
0.2.1 (2017-12-13)
- build: prevent hanging when only building (5465994)
0.2.0 (2017-12-12)
- type-check: correctly load user tsconfig (24900cb)
- transpiler: add Angular AST transform support (22a040e)
- transpiler: support custom mappings (5a550ce)
- fork type-checker to separate process (5a18d78)
- error-report: add error underlining (24b70c9)
- type-check: implement incremental build (fd771e8)
- use type-checker to transpile on main thread (d41d95f)