Comparing version 1.7.0 to 1.7.1
@@ -233,3 +233,3 @@ 'use strict'; | ||
_log('[check semantics*]', fileName_1 + ' is an internal module and it has changed shape -> check whatever hasn\'t been checked yet'); | ||
toBeCheckedSemantically.push.apply(toBeCheckedSemantically, host.getScriptFileNames().filter(function (filename) { return path.extname(filename) === '.ts'; })); | ||
toBeCheckedSemantically.push.apply(toBeCheckedSemantically, host.getScriptFileNames()); | ||
filesWithChangedSignature.length = 0; | ||
@@ -395,3 +395,3 @@ dependentFiles.length = 0; | ||
LanguageServiceHost.prototype.getScriptFileNames = function () { | ||
return Object.keys(this._snapshots); | ||
return Object.keys(this._snapshots).filter(function (filename) { return path.extname(filename) === '.ts'; }); | ||
}; | ||
@@ -398,0 +398,0 @@ LanguageServiceHost.prototype.getScriptVersion = function (filename) { |
{ | ||
"name": "gulp-tsb", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"author": "Johannes Rieken <johannes.rieken@gmail.com>", | ||
@@ -5,0 +5,0 @@ "description": "A gulp plugin for very fast TypeScript compilation.", |