From 7d4ca231caf32a4a3a76361b763cd9593d582166 Mon Sep 17 00:00:00 2001 From: Matthew Amato Date: Thu, 29 Oct 2015 19:21:12 -0400 Subject: [PATCH] Ignore the deprecated Scene version of HeadingPitchRange Fixes #3143 --- gulpfile.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index b4424d49a8ba..de879671b077 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -701,6 +701,12 @@ function createCesiumJs() { var parameterName = moduleId.replace(nonIdentifierRegexp, '_'); + //Ignore the deprecated Scene version of HeadingPitchRange + //until it is removed with #3097 + if (moduleId === 'Scene/HeadingPitchRange') { + return; + } + moduleIds.push("'./" + moduleId + "'"); parameters.push(parameterName); assignments.push('Cesium' + assignmentName + ' = ' + parameterName + ';');