Skip to content

Latest commit

 

History

History
125 lines (67 loc) · 3.86 KB

CHANGELOG.md

File metadata and controls

125 lines (67 loc) · 3.86 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.5.0 (2018-01-06)

Features

  • reporter: add Angular error reporter (7ec561c)

0.4.0 (2018-01-05)

Bug Fixes

🎉 First Angular AOT support 🎉

Features

  • Angular
    • Compilation using AOT compiler
    • Support lazy-loading (AOT only)
    • Preprocess templates and style using Parcel (templateUrl or styleUrls 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)

Bug Fixes

  • resolve: correctly map directory indices (a543347)

0.2.4 (2017-12-19)

Bug Fixes

  • mappings: check baseUrl before transform (10863f1)

0.2.3 (2017-12-15)

Bug Fixes

  • mappings: fix es2015 import transformations (bc9e6a4)
  • resolve: default moduleResolution to node (b0d111d)

0.2.2 (2017-12-15)

Bug Fixes

  • logs: do not log empty lines (b71da83)
  • mappings: resolve when path is undefined (1361c83)

0.2.1 (2017-12-13)

Bug Fixes

  • build: prevent hanging when only building (5465994)

0.2.0 (2017-12-12)

Bug Fixes

  • type-check: correctly load user tsconfig (24900cb)

Features

  • transpiler: add Angular AST transform support (22a040e)
  • transpiler: support custom mappings (5a550ce)

0.1.0 (2017-12-10)

Features

  • fork type-checker to separate process (5a18d78)
  • error-report: add error underlining (24b70c9)
  • type-check: implement incremental build (fd771e8)

Performance Improvements

  • use type-checker to transpile on main thread (d41d95f)