fix(build): disable the analysis of third-party libs

This commit is contained in:
vsavkin 2014-12-12 16:24:53 -08:00
parent de855a79b9
commit d985045983
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ module.exports = function(gulp, plugins, config) {
}));
var analyzeFile = ['library _analyzer;'];
srcFiles.concat(testFiles).forEach(function(fileName, index) {
if (fileName !== tempFile) {
if (fileName !== tempFile && fileName.indexOf("/packages/") === -1) {
analyzeFile.push('import "./'+fileName+'" as mod'+index+';');
}
});