@nevware21/grunt-ts-plugin
Advanced tools
Comparing version 0.4.1 to 0.4.2
@@ -0,1 +1,7 @@ | ||
# v0.4.2 | ||
## Changelog | ||
- #51 [BUG] ts-plugin v0.4.1 Failing with only external non-emit-preventing errors | ||
# v0.4.1 | ||
@@ -5,3 +11,3 @@ | ||
- [BUG] tsplugin does not fail when both type and external type errors are detected #48 #49 | ||
- #48 [BUG] tsplugin does not fail when both type and external type errors are detected | ||
@@ -8,0 +14,0 @@ # v0.4.0 |
{ | ||
"name": "@nevware21/grunt-ts-plugin", | ||
"description": "TypeScript Compilation Plugin for GruntJS", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"homepage": "https://github.com/nevware21/grunt-plugins", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -820,3 +820,3 @@ 'use strict'; | ||
_logErrorSummary(chkResponse); | ||
isSuccess = !chkResponse.isError; | ||
isSuccess = !chkResponse.isError || chkResponse.isOnlyTypeErrors; | ||
if (chkResponse.isOnlyTypeErrors && options.failOnTypeErrors) { | ||
@@ -823,0 +823,0 @@ isSuccess = false; |
Sorry, the diff of this file is not supported yet
174694