Skip to content

Commit d985045

Browse files
committed
fix(build): disable the analysis of third-party libs
1 parent de855a7 commit d985045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build/dartanalyzer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function(gulp, plugins, config) {
2020
}));
2121
var analyzeFile = ['library _analyzer;'];
2222
srcFiles.concat(testFiles).forEach(function(fileName, index) {
23-
if (fileName !== tempFile) {
23+
if (fileName !== tempFile && fileName.indexOf("/packages/") === -1) {
2424
analyzeFile.push('import "./'+fileName+'" as mod'+index+';');
2525
}
2626
});

0 commit comments

Comments
 (0)