From 9f039d40c18e8770b6b1596a80608ae5297b5cc6 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 15 Apr 2020 13:46:45 +0300 Subject: [PATCH] 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 --- aio/tools/example-zipper/customizer/package-json/universal.json | 1 + 1 file changed, 1 insertion(+) diff --git a/aio/tools/example-zipper/customizer/package-json/universal.json b/aio/tools/example-zipper/customizer/package-json/universal.json index c3f649d529..959271c58c 100644 --- a/aio/tools/example-zipper/customizer/package-json/universal.json +++ b/aio/tools/example-zipper/customizer/package-json/universal.json @@ -1,6 +1,7 @@ { "scripts": [ { "name": "ng", "command": "ng" }, + { "name": "build", "command": "ng build" }, { "name": "start", "command": "ng serve" }, { "name": "test", "command": "ng test" }, { "name": "lint", "command": "ng lint" },