Skip to content

0.4.0

Compare
Choose a tag to compare
@Bobris Bobris released this 07 Nov 22:59
· 115 commits to master since this release

Added

  • Unused classes are eliminated by optimizer.
  • Support for export { x } from "y"; and export { x as y } from "z"; patterns
  • Compress optimization for cloned constant variables
  • Improved bundling dead code elimination of export as namespace

Fixed

  • Bundler for Code generated by TypeScript 3.9.2
  • Bundling of export * as x from "y";
  • Bundling of export var x = func; x = func2; pattern.
  • Bundling of JS dependency with var x = (function(){ window.x = window.x || {}; ...; return x; })(); pattern.
  • Bundling of JS dependency with if (typeof module !== "undefined" && module.exports) { pattern.