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
This commit is contained in:
Pete Bacon Darwin 2020-07-07 13:57:43 +01:00 committed by Andrew Scott
parent 04c220bbdf
commit d1aa4678be
1 changed files with 3 additions and 1 deletions

View File

@ -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"]