Skip to content

Releases: wessberg/rollup-plugin-ts

v1.1.22

04 Feb 20:02
Compare
Choose a tag to compare
  • fixed lint 52510e1
  • fix(dependencies): updates dependencies ff72436
  • fix(declarations): fixes an issue with generating declarations when ImportTypeNodes are being used 493d8b1

v1.1.21...v1.1.22

v1.1.21

27 Jan 04:59
Compare
Choose a tag to compare
  • fix(package): adds back tslib as a hard dependency e6bcf1c

v1.1.20...v1.1.21

v1.1.19

24 Jan 20:26
Compare
Choose a tag to compare
  • fix(package): removes unneeded scripts 4275919
  • fix(package): adds pretty-quick to commit hooks c07c616
  • fix(bug): fixes an issue where default exports would be removed from declaration files c2c18ed
  • Bumped version 3c317c4

v1.1.18...v1.1.19

v1.0.12

28 Oct 22:42
Compare
Choose a tag to compare

Features

improved declaration (.d.ts) generation by a huge margin

Previously, declarations was based on a singular "outFile" generated by Typescript. However, this had several drawbacks.
First, library consumers wouldn't be able to properly use it. Second, everything would be bundled along, rather than only
the specific parts that are exported by any given library. The new approach bundles all declarations into a single file per-chunk
and only includes the things that are exported or that are depended upon by exported identifiers within a module.

Stable release

17 Oct 22:11
Compare
Choose a tag to compare

Features

  • release: ground-up rewrite and some changes to the public API (e43045c), closes #2

BREAKING CHANGES

  • release: The 'babel' config option has been removed in favor of 'babelConfig' which may point to a file on disk (such as a '.babelrc' or a 'babel.config.js') or be a dictionary of Babel options.
  • release: The 'parseExternalModules' config option has been removed.