Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): add missing deploy-url to server
Browse files Browse the repository at this point in the history
Fix #11426
  • Loading branch information
filipesilva authored and clydin committed Jul 9, 2018
1 parent 907a70f commit d64cd10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/angular_devkit/build_angular/src/server/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ export interface BuildWebpackServerSchema {
* Use a separate bundle containing code used across multiple bundles.
*/
commonChunk?: boolean;
/**
* URL where files will be deployed.
*/
deployUrl?: string;
/**
* Show circular dependency warnings on builds.
*/
Expand Down
4 changes: 4 additions & 0 deletions packages/angular_devkit/build_angular/src/server/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
"description": "Use a separate bundle containing code used across multiple bundles.",
"default": true
},
"deployUrl": {
"type": "string",
"description": "URL where files will be deployed."
},
"verbose": {
"type": "boolean",
"description": "Adds more details to output logging.",
Expand Down

0 comments on commit d64cd10

Please sign in to comment.