From d1aa4678beef65b47af927ec684d690b3b77d205 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Tue, 7 Jul 2020 13:57:43 +0100 Subject: [PATCH] build(docs-infra): ensure the correct files are in the i18n example (#37947) The Stackblitz and zip-file include `doc-files` unnecssarily and are missing the locale files. This commit updates the `stackblitz.json` to fix this. PR Close #37947 --- aio/content/examples/i18n/stackblitz.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aio/content/examples/i18n/stackblitz.json b/aio/content/examples/i18n/stackblitz.json index 31759ca104..8326f3902b 100644 --- a/aio/content/examples/i18n/stackblitz.json +++ b/aio/content/examples/i18n/stackblitz.json @@ -3,7 +3,9 @@ "files":[ "!**/*.d.ts", "!**/*.js", - "!**/*.[0-9].*" + "!**/*.[0-9].*", + "!doc-files/**/*", + "**/*.xlf" ], "file": "src/app/app.component.ts", "tags": ["Angular", "i18n", "internationalization"]