From e7081b8b7ccdd242f16a200c2d8013a869bff3b5 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Wed, 13 Jan 2016 16:22:41 +0100 Subject: [PATCH] chore: don't track size of non-bundle files --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 43be3501ea..103580a173 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1272,7 +1272,7 @@ gulp.task('!bundle.copy', function() { gulp.task('!bundles.js.checksize', function(done) { var reportSize = require('./tools/analytics/reportsize'); - return reportSize('dist/js/bundle/**', {printToConsole: ['gzip level=2']}); + return reportSize('dist/js/bundle/**/*.js', {printToConsole: ['gzip level=2']}); }); gulp.task('bundles.js',