From e01d697eedbc3dd3eeba07873a6d9c08121fb0c6 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 26 Jun 2019 18:17:07 +0200 Subject: [PATCH] build: filter out changelog entries for zone.js from framework changelog (#31277) We don't want to show entries for the `zone.js` scope in the main framework changelog file. The zone.js changelog will be handled separately within the `packages/zone.js` folder. (see [here](https://github.com/angular/angular/pull/31277#issuecomment-505934681)) PR Close #31277 --- tools/gulp-tasks/changelog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gulp-tasks/changelog.js b/tools/gulp-tasks/changelog.js index 7c34fd67b5..137a847d6d 100644 --- a/tools/gulp-tasks/changelog.js +++ b/tools/gulp-tasks/changelog.js @@ -12,6 +12,7 @@ module.exports = (gulp) => () => { 'aio', 'docs-infra', 'ivy', + 'zone.js', ]; return gulp.src('CHANGELOG.md')