From 5f6b7ffadb545622b1cf22a2d190ccfcb5f4c0a5 Mon Sep 17 00:00:00 2001 From: Jason Teplitz Date: Tue, 25 Aug 2015 14:18:07 -0700 Subject: [PATCH] chore(build): Fix flaky builds caused by doc generation. Closes #3836 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 19659be73f..0cb1baed69 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -422,7 +422,7 @@ var webserver = require('gulp-webserver'); gulp.task('docs/bower', function() { var bowerTask = bower.commands.install(undefined, undefined, { cwd: 'docs' }); bowerTask.on('log', function (result) { - console.log('bower:', result.id, result.data.endpoint.name); + console.log('bower:', result.id, result.data); }); bowerTask.on('error', function(error) { console.log(error);