build(docs-infra): add missing `build` npm script for `universal` docs example ZIP archive (#36483)

Previously, the `package.json` template used in the ZIP archive of the
`universal` example that we offer for download missed the `build` npm
script.

This commit updates the template for the `universal` docs example to
include the `build` npm script.

NOTE:
The `build` npm script is already included in
`aio/tools/examples/shared/boilerplate/universal/package.json`, but it
was removed by the example zipper.

PR Close #36483
This commit is contained in:
George Kalpakas 2020-04-15 13:46:45 +03:00 committed by atscott
parent b1f1d3ffd2
commit 9f039d40c1
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ {
"scripts": [ "scripts": [
{ "name": "ng", "command": "ng" }, { "name": "ng", "command": "ng" },
{ "name": "build", "command": "ng build" },
{ "name": "start", "command": "ng serve" }, { "name": "start", "command": "ng serve" },
{ "name": "test", "command": "ng test" }, { "name": "test", "command": "ng test" },
{ "name": "lint", "command": "ng lint" }, { "name": "lint", "command": "ng lint" },