Dts Bundle Generator Versions Save

A tool to generate a single bundle of dts with types tree-shaking

v9.5.1

3 weeks ago

Fixed

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

v9.5.0

3 weeks ago

Fixed

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

v9.4.1

3 weeks ago

Fixed

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

v9.4.0

4 weeks ago

Fixed

  • Performance improvements (see #302, #303 and #314)
  • Declarations of "unknown" modules aren't included despite enabled inlineDeclareExternals flag (see #312 and 186e6fd436058da15a999052631c8fa799536ee7)
  • 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

v9.3.1

3 months ago

Fixing one little oopsie from v9.3.0 release.

Fixed

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

v9.3.0

3 months ago

Changed

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

Fixed

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

v9.2.5

3 months ago

Fixed

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

v9.2.4

4 months ago

Added

v9.2.3

4 months ago

Fixed

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

v9.2.2

4 months ago

Fixed

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