Skip to content

Releases: ivogabe/gulp-typescript

v3.1.1 - Fix for bundled types

28 Oct 18:06
Compare
Choose a tag to compare

As of v3.1.0, gulp-typescript uses @types to provide type information for its dependencies. However, those types included the types for NodeJS which caused that these types could be passed to the compiler in an compilation using gulp-typescript, unwanted. @types/node is now registered as a devDependency, so it is not installed any more for users of gulp-typescript.

v3.1.0 - Improved included types

27 Oct 20:19
Compare
Choose a tag to compare
  • Included types are now using @types for their dependencies (#436, #448)
  • Fix several issues with source maps - #396, #432, #441

v3.0.2 - @types and source maps

01 Oct 20:46
Compare
Choose a tag to compare
  • Automatically include library definitions from @types - #422
  • Improve performance when gulp-sourcemaps is not used - #429
  • Set sourcesContent in source maps of files in subdirectories - 0dc5e08

v3.0.1 - Bug fixes with error reporting

24 Sep 21:12
Compare
Choose a tag to compare
  • Fix an issue where gulp-typescript would fail when noEmitOnError and outFile are set (#416)
  • Fix an issue where errors are not reported when no reporter is given (#417)

v3.0.0 - TypeScript 2.0

22 Sep 22:24
Compare
Choose a tag to compare

Most changes can be found in the article on migration help.

v2.14.1 - Fixed an issue with wrong base paths in tsProject.src()

21 Sep 16:00
Compare
Choose a tag to compare
  • Fixed #253, regression of the revised tsProject.src() in 98eca4a.

v2.14.0 - Improved tsProject.src()

20 Sep 12:31
Compare
Choose a tag to compare

The implementation of tsProject.src() has been replaced. Previously, files were resolved by a glob with gulp.src(). This glob was handled very inefficiently by glob-stream and the glob didn't always match the behavior of tsc. The new implementation uses the TypeScript api to resolve all files for better performance.

Related issues: #275, #326, #404, #406

The includes property of a tsconfig.json file is now also supported (#320).

v2.13.6 - Type definitions for TS1.8

02 Jun 11:50
Compare
Choose a tag to compare
  • Fix type definitions working for TS1.8 - #360

v2.13.5 - Bug fixes

26 May 20:20
Compare
Choose a tag to compare
  • Allow to override rootDir from tsconfig.json - #340, #353
  • Set correct root directory when out is set, with different input sources - #341
  • Use less indentation and increase readability of readme - #347
  • Fixed an issue with incremental compilation when no files were changes - #342
  • Add support for symlinks with typescript@next - #349

v2.13.4

08 May 20:24
Compare
Choose a tag to compare

Fixed an issue with rootDir, which caused that no files were emitted or that errors were shown - see #307.