You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,26 @@
2
2
3
3
## Next
4
4
5
+
## v5.3.0-beta.6 (2016-01-15)
6
+
* FIX: Will now resolve templates prior to updating the globs in a tsconfig.json file (#303) - thanks for the report @nsgundy.
7
+
8
+
## v5.3.0-beta.5 (2016-01-14)
9
+
* FIX: Will now provide a warning when a grunt-ts task-level keyword is used as a target name (#319) - thanks for the report @jounii.
10
+
11
+
## v5.3.0-beta.4 (2016-01-14)
12
+
* FIX: Transformed HTML files will be automatically added to the compilation context if they match the glob (#255).
13
+
* FIX: resolved issue in v5.3.0-beta.3 - will now error again if `html` is specified without an `src` or a glob.
14
+
15
+
## v5.3.0-beta.3 (2015-12-26)
16
+
* FIX: Use of `outDir` in the Gruntfile now works when otherwise getting the configuration from tsconfig.json. (Thanks, @gilamran (#312)).
17
+
* NOTE: No longer warns when `html` is used without a source. This needs to wait on #255.
18
+
* FIX: Certain conditions (such as the specified tsconfig.json not found or VS project resolution errors) caused grunt-ts to hard-quit during options resolution. These are now properly surfaced as errors, and the main quit path will be followed.
19
+
20
+
## v5.3.0-beta.2 (2015-12-06)
21
+
* FEAT: Updated to TypeScript 1.7 and revised all integration tests to account for its behavior (generally, the change to how `removeComments` works).
22
+
* FEAT: Added support for `--noLib`, `--emitBOM`, `--locale`, `--suppressExcessPropertyErrors`, `--stripInternal`, and `--allowSyntheticDefaultImports`.
23
+
* FEAT: Added support for `es6` and `es2015` as module options.
24
+
5
25
## v5.3.0-beta.1 (2015-12-06)
6
26
* FIX: Improved detection of if newLine parameter is redundant for TSC. This should make the functionality work more consistently if `grunt.util.linefeed` is used. Thanks to @Maks3w for the report.
Specifies if TypeScript should emit AMD, CommonJS, SystemJS, or UMD-style external modules. Has no effect if internal modules are used. Note - this should not be used in combination with `out` because the TypeScript compiler does not support concatenation of external modules; consider using a module bundler like WebPack, Browserify, or Require's r.js to concatenate external modules.
835
+
Specifies if TypeScript should emit AMD, CommonJS, SystemJS, "ES6", or UMD-style external modules. Has no effect if internal modules are used. Note - this should not be used in combination with `out`[prior to TypeScript 1.8](https://github.com/Microsoft/TypeScript/wiki/What%27s-new-in-TypeScript#option-to-concatenate-amd-and-system-modules-into-a-single-output-file) because the TypeScript compiler does not support concatenation of external modules; consider using a module bundler like WebPack, Browserify, or Require's r.js to concatenate external modules.
0 commit comments