From 2892e36d2983164a2d8cab8e1b2ad2b42ddb8220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Sat, 4 Apr 2015 22:46:07 +0200 Subject: [PATCH 1/3] Update to closure-util 1.4.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b3ad9bb5b2..2f0aafa0b5 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ }, "dependencies": { "async": "0.9.0", - "closure-util": "1.3.0", + "closure-util": "1.4.0", "fs-extra": "0.12.0", "glob": "5.0.3", "graceful-fs": "3.0.2", From 4130e7803a2b2ae4c60d222cec08a740472204ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Sat, 4 Apr 2015 23:18:57 +0200 Subject: [PATCH 2/3] Update compile config used to build individual examples --- build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 615c5fb183..0ca69bd75d 100755 --- a/build.py +++ b/build.py @@ -327,7 +327,6 @@ def examples_star_json(name, match): "ambiguousFunctionDecl", "checkDebuggerStatement", "checkEventfulObjectDisposal", - "checkProvides", "checkRegExp", "checkStructDictInheritance", "checkTypes", @@ -346,6 +345,10 @@ def examples_star_json(name, match): "invalidCasts", "misplacedTypeAnnotation", "missingProperties", + "missingProvide", + "missingRequire", + "missingReturn", + "newCheckTypes", "nonStandardJsDocs", "strictModuleDepCheck", "suspiciousCode", From 58895f73ac2c6c4ae84ccd1c315c3dd456319b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Sat, 4 Apr 2015 23:20:49 +0200 Subject: [PATCH 3/3] Fix compile error in image-filter example --- examples_src/image-filter.js | 1 - 1 file changed, 1 deletion(-) diff --git a/examples_src/image-filter.js b/examples_src/image-filter.js index c8e7fd4eea..a045c999cb 100644 --- a/examples_src/image-filter.js +++ b/examples_src/image-filter.js @@ -91,7 +91,6 @@ select.onchange = function() { /** * Apply a filter on "postcompose" events. - * @param {ol.render.Event} event Render event. */ imagery.on('postcompose', function(event) { convolve(event.context, selectedKernel);