Merge pull request #4930 from fredj/custom-builds.md

Use ADVANCED instead of ADVANCED_OPTIMIZATIONS
This commit is contained in:
Frédéric Junod
2016-02-29 10:40:19 +01:00
+3 -3
View File
@@ -70,7 +70,7 @@ Creating a custom build requires writing a build configuration file. The format
"extra_annotation_name": [ "extra_annotation_name": [
"api", "observable" "api", "observable"
], ],
"compilation_level": "ADVANCED_OPTIMIZATIONS", "compilation_level": "ADVANCED",
"manage_closure_dependencies": true "manage_closure_dependencies": true
} }
} }
@@ -191,7 +191,7 @@ Now let's try a more complicated example: [`heatmaps-earthquakes`](http://openla
```json ```json
{ {
"exports": [ "exports": [
"ol.layer.Heatmap", "ol.layer.Heatmap",
"ol.source.Vector", "ol.source.Vector",
"ol.format.KML", "ol.format.KML",
"ol.layer.Heatmap#getSource", "ol.layer.Heatmap#getSource",
@@ -219,7 +219,7 @@ Now let's try a more complicated example: [`heatmaps-earthquakes`](http://openla
"goog.dom.ASSUME_STANDARDS_MODE=true", "goog.dom.ASSUME_STANDARDS_MODE=true",
"goog.DEBUG=false" "goog.DEBUG=false"
], ],
"compilation_level": "ADVANCED_OPTIMIZATIONS", "compilation_level": "ADVANCED",
"manage_closure_dependencies": true "manage_closure_dependencies": true
} }
} }