Skip to content

Commit 98849de

Browse files
vicbchuckjaz
authored andcommitted
build: fix public-api:update gulp task (angular#16859)
PR angular#16834 makes the task faster but it doesn't work any more! Reverting to the slower but correct task for now.
1 parent afd703d commit 98849de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gulp.task('format', loadTask('format', 'format'));
3232
gulp.task('build.sh', loadTask('build', 'all'));
3333
gulp.task('build.sh:no-bundle', loadTask('build', 'no-bundle'));
3434
gulp.task('public-api:enforce', loadTask('public-api', 'enforce'));
35-
gulp.task('public-api:update', ['build.sh:no-bundle'], loadTask('public-api', 'update'));
35+
gulp.task('public-api:update', ['build.sh'], loadTask('public-api', 'update'));
3636
gulp.task('lint', ['format:enforce', 'validate-commit-messages', 'tslint']);
3737
gulp.task('tslint', ['tools:build'], loadTask('lint'));
3838
gulp.task('validate-commit-messages', loadTask('validate-commit-message'));

0 commit comments

Comments
 (0)