Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update optimization description #11862

Merged
merged 1 commit into from
Aug 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/documentation/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ See https://github.com/angular/angular-cli/issues/7797 for details.
<code>--optimization</code>
</p>
<p>
Defines the optimization level of the build.
Enables optimization of the build output.
</p>
</details>
<details>
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/serve.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ ng serve [project]
<code>--optimization</code>
</p>
<p>
Defines the optimization level of the build.
Enables optimization of the build output.
</p>
</details>
<details>
Expand Down
6 changes: 3 additions & 3 deletions packages/angular/cli/lib/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build.",
"description": "Enables optimization of the build output.",
"default": false
},
"fileReplacements": {
Expand Down Expand Up @@ -995,7 +995,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build."
"description": "Enables optimization of the build output."
},
"aot": {
"type": "boolean",
Expand Down Expand Up @@ -1373,7 +1373,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build.",
"description": "Enables optimization of the build output.",
"default": false
},
"fileReplacements": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface BrowserBuilderSchema {
stylePreprocessorOptions?: StylePreprocessorOptions;

/**
* Defines the optimization level of the build.
* Enables optimization of the build output.
*/
optimization: boolean;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build.",
"description": "Enables optimization of the build output.",
"default": false
},
"fileReplacements": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build."
"description": "Enables optimization of the build output."
},
"aot": {
"type": "boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export interface BuildWebpackServerSchema {
*/
bundleDependencies?: BundleDependencies;
/**
* Defines the optimization level of the build.
* Enables optimization of the build output.
*/
optimization?: boolean;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"optimization": {
"type": "boolean",
"description": "Defines the optimization level of the build.",
"description": "Enables optimization of the build output.",
"default": false
},
"fileReplacements": {
Expand Down