From f554610473a5a5473187656aad150eb17372e3cf Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 1 Nov 2019 18:29:59 +0100 Subject: [PATCH] build: generate changelog for google-maps package (#17563) We previously disabled the changelog generation for the `google-maps` package. Now that we released it, we should enable the changelog generation for future changes. --- tools/release/changelog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release/changelog.ts b/tools/release/changelog.ts index 79cf4e86bef7..171ae767e6fd 100644 --- a/tools/release/changelog.ts +++ b/tools/release/changelog.ts @@ -27,7 +27,7 @@ const orderedChangelogPackages = [ ]; /** List of packages which are excluded in the changelog. */ -const excludedChangelogPackages = ['google-maps']; +const excludedChangelogPackages = []; /** Prompts for a changelog release name and prepends the new changelog. */ export async function promptAndGenerateChangelog(changelogPath: string) {