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 + ';');