From 98849de127ee13df8bf05bdb47c97f0de866a432 Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Mon, 22 May 2017 10:07:21 -0700 Subject: [PATCH] build: fix public-api:update gulp task (#16859) PR #16834 makes the task faster but it doesn't work any more! Reverting to the slower but correct task for now. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d1ad84dc2d..ff78cc396a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -32,7 +32,7 @@ gulp.task('format', loadTask('format', 'format')); gulp.task('build.sh', loadTask('build', 'all')); gulp.task('build.sh:no-bundle', loadTask('build', 'no-bundle')); gulp.task('public-api:enforce', loadTask('public-api', 'enforce')); -gulp.task('public-api:update', ['build.sh:no-bundle'], loadTask('public-api', 'update')); +gulp.task('public-api:update', ['build.sh'], loadTask('public-api', 'update')); gulp.task('lint', ['format:enforce', 'validate-commit-messages', 'tslint']); gulp.task('tslint', ['tools:build'], loadTask('lint')); gulp.task('validate-commit-messages', loadTask('validate-commit-message'));