From 085e77d3a35ce48bc3cc460b8771645d56cc315b Mon Sep 17 00:00:00 2001 From: rrastog2 Date: Sun, 21 Jun 2020 21:10:00 -0400 Subject: [PATCH] docs(@angular-devkit/build-angular): update browserTarget doc to be more specific about usage Old documentation was "Target to serve.", this commit aims to provide more clarity over that. Closes issue #16572 --- packages/angular/cli/lib/config/schema.json | 2 +- .../angular_devkit/build_angular/src/dev-server/schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/angular/cli/lib/config/schema.json b/packages/angular/cli/lib/config/schema.json index 2f3b91ee9e22..e51703aad570 100644 --- a/packages/angular/cli/lib/config/schema.json +++ b/packages/angular/cli/lib/config/schema.json @@ -1136,7 +1136,7 @@ "properties": { "browserTarget": { "type": "string", - "description": "Target to serve." + "description": "Build target to serve in the format of project-name:builder:config. Useful for when there are additional alternate configurations (such as stable, or archive that are used by AIO)." }, "port": { "type": "number", diff --git a/packages/angular_devkit/build_angular/src/dev-server/schema.json b/packages/angular_devkit/build_angular/src/dev-server/schema.json index 64ec242d274e..071b23ea4708 100644 --- a/packages/angular_devkit/build_angular/src/dev-server/schema.json +++ b/packages/angular_devkit/build_angular/src/dev-server/schema.json @@ -6,7 +6,7 @@ "properties": { "browserTarget": { "type": "string", - "description": "Target to serve.", + "description": "Build target to serve in the format of project-name:builder:config. Useful for when there are additional alternate configurations (such as stable, or archive that are used by AIO).", "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$" }, "port": {