Skip to content

Releases: timocov/dts-bundle-generator

9.5.1

21 Apr 23:27
c69ff0d
Compare
Choose a tag to compare

Fixed

  • Namespace import disappeared in output (see #319 and aa5a334)

9.5.0

17 Apr 23:27
54f8817
Compare
Choose a tag to compare

Fixed

  • Constants declared by using object/array binding pattern syntax fail the build (see #315 and #317)

9.4.1

17 Apr 22:31
487adc9
Compare
Choose a tag to compare

Fixed

  • Fixed issue when because of recursive types some of the types could get removed from the bundle (see #318 and 897a5d5)

9.4.0

15 Apr 23:37
d3c2225
Compare
Choose a tag to compare

Fixed

  • Performance improvements (see #302, #303 and #314)
  • Declarations of "unknown" modules aren't included despite enabled inlineDeclareExternals flag (see #312 and 186e6fd)
  • Fixed handling import * statements with local usage but not directly exporting (see #304 and #309)
  • Fixed bug when imported nodes weren't included into bundle if they were used in declare module statements only (see #305 and #316)
  • Fixed issue with unknown extension when using allowArbitraryExtensions compiler option (see #313) - thanks @stepankuzmin

9.3.1

03 Feb 20:18
Compare
Choose a tag to compare

Fixing one little oopsie from v9.3.0 release.

Fixed

  • Spamming warning log messages while processing variables (see 8ecb56f)

9.3.0

03 Feb 20:04
Compare
Choose a tag to compare

Changed

  • Do not compile bundled output together as they might have incompatible global declarations (see #296 and 43c2058)

Fixed

  • Not all symbols in a declaration merging are exported (see #301 and 874f801)
  • Namespaced imports/exports don't generate a namespace if they are exported via name (see #299 and 86fc2ff)
  • jsdoc comments are stripped for nodes that were renamed because of the name collision (see #298 and 2b1b281)
  • Do not rename a node if known global name refers to this a symbol of that node (see #297 and c0a7007)

9.2.5

25 Jan 20:16
Compare
Choose a tag to compare

Fixed

  • Fixed inlining transitive-dependencies when using inlineDeclareGlobals (see eb03676)

9.2.4

11 Jan 21:21
Compare
Choose a tag to compare

Added

  • Added a warning if referenced type is not exported because it was renamed due to the name collisions (see #288, #286 (comment) and 262286c).

9.2.3

10 Jan 23:43
Compare
Choose a tag to compare

Fixed

  • Do not export types if their local name changed because of collisions (unless they were explicitly exported) (see #286 and 643003f)

9.2.2

10 Jan 22:51
Compare
Choose a tag to compare

Fixed

  • Added support for var symbol renaming (see #285) - thanks @Atrue!