Use ADVANCED instead of ADVANCED_OPTIMIZATIONS

This commit is contained in:
Frederic Junod
2016-02-29 08:39:54 +01:00
parent 941f220f3d
commit 2427d0e684

View File

@@ -70,7 +70,7 @@ Creating a custom build requires writing a build configuration file. The format
"extra_annotation_name": [
"api", "observable"
],
"compilation_level": "ADVANCED_OPTIMIZATIONS",
"compilation_level": "ADVANCED",
"manage_closure_dependencies": true
}
}
@@ -191,7 +191,7 @@ Now let's try a more complicated example: [`heatmaps-earthquakes`](http://openla
```json
{
"exports": [
"ol.layer.Heatmap",
"ol.layer.Heatmap",
"ol.source.Vector",
"ol.format.KML",
"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.DEBUG=false"
],
"compilation_level": "ADVANCED_OPTIMIZATIONS",
"compilation_level": "ADVANCED",
"manage_closure_dependencies": true
}
}