Skip to content

Commit

Permalink
build: fix public-api:update gulp task (angular#16859)
Browse files Browse the repository at this point in the history
PR angular#16834 makes the task faster but it doesn't work any more!
Reverting to the slower but correct task for now.
  • Loading branch information
vicb authored and Zhicheng Wang committed Aug 11, 2017
1 parent 58f7fc6 commit 2bdc5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down

0 comments on commit 2bdc5d5

Please sign in to comment.