Skip to content

Commit 12f2bf1

Browse files
authored
Merge pull request #8184 from AnalyticalGraphicsInc/update-node-modules
Update node modules
2 parents 58624ba + 1a8e2dd commit 12f2bf1

22 files changed

+12
-35
lines changed

Apps/CesiumViewer/CesiumViewerStartup.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global require*/
21
/*eslint-disable strict*/
32
require({
43
baseUrl : '.',

Apps/Sandcastle/CesiumSandcastle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*global require,Blob,JSHINT */
1+
/*global JSHINT */
22
/*global decodeBase64Data, embedInSandcastleTemplate */
33
/*global gallery_demos, has_new_gallery_demos, hello_world_index*/// defined in gallery/gallery-index.js, created by build
44
/*global sandcastleJsHintOptions*/// defined by jsHintOptions.js, created by build

Apps/Sandcastle/Sandcastle-client.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
(function() {
22
'use strict';
3-
/*global console,Sandcastle,window*/
4-
53
window.parent.postMessage('reload', '*');
64

75
function defined(value) {

Apps/TimelineDemo/TimelineDemo.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global document,window,define*/
21
define([
32
'Core/Clock',
43
'Core/ClockRange',

Apps/TimelineDemo/boot.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global require*/
21
require({
32
baseUrl : '../..',
43
packages : [{

Source/Core/ArcGISTiledElevationTerrainProvider.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global define*/
21
define([
32
'../ThirdParty/when',
43
'./Cartesian2',

Source/Core/CoplanarPolygonGeometry.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global define*/
21
define([
32
'./arrayRemoveDuplicates',
43
'./BoundingRectangle',

Source/Core/CoplanarPolygonOutlineGeometry.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global define*/
21
define([
32
'./arrayRemoveDuplicates',
43
'./BoundingSphere',

Source/Core/getTimestamp.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
define(function() {
22
'use strict';
3-
/*global performance*/
43

54
/**
65
* Gets a timestamp that can be used in measuring the time between events. Timestamps

Source/Renderer/AutomaticUniforms.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ define([
99
Matrix4,
1010
WebGLConstants) {
1111
'use strict';
12-
/*global WebGLRenderingContext*/
1312

1413
var viewerPositionWCScratch = new Cartesian3();
1514

Source/Renderer/Context.js

-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ define([
6565
UniformState,
6666
VertexArray) {
6767
'use strict';
68-
/*global WebGLRenderingContext*/
69-
70-
/*global WebGL2RenderingContext*/
7168

7269
function errorToString(gl, error) {
7370
var message = 'WebGL Error: ';

Source/Renderer/freezeRenderState.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global define*/
21
define([
32
'../Core/freezeObject'
43
], function(

Source/Workers/createTaskProcessorWorker.js

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ define([
5353
var postMessage;
5454

5555
return function(event) {
56-
/*global self*/
5756
var data = event.data;
5857

5958
var transferableObjects = [];

Source/Workers/transferTypedArrayTest.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
/*global self:true*/
21
// make sure self is defined so that the Dojo build can evaluate this file without crashing.
32
if (typeof self === 'undefined') {
4-
self = {};
3+
self = {}; //eslint-disable-line no-implicit-globals, no-global-assign
54
}
65

76
self.onmessage = function(event) {

Source/main.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
/*global require*/
21
// require in the complete Cesium object and reassign it globally.
32
// This is meant for use with the Almond loader.
43
require([
54
'Cesium'
65
], function(
76
Cesium) {
87
'use strict';
9-
/*global self,module*/
8+
/*global module*/
109
if (typeof window !== 'undefined') {
1110
window.Cesium = Cesium;
1211
} else if (typeof self !== 'undefined') {

Specs/Core/HeadingPitchRollSpec.js

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ define([
99
'use strict';
1010

1111
describe('Core/HeadingPitchRoll', function() {
12-
13-
/*global it,expect*/
14-
1512
var deg2rad = CesiumMath.RADIANS_PER_DEGREE;
1613

1714
it('construct with default values', function() {

Specs/Core/ResourceSpec.js

-1
Original file line numberDiff line numberDiff line change
@@ -1733,7 +1733,6 @@ describe('Core/Resource', function() {
17331733
}).then(function(result) {
17341734
expect(result.type).toEqual('image/png');
17351735

1736-
/*global URL*/
17371736
var blobUrl = URL.createObjectURL(result);
17381737

17391738
return Resource.fetchImage(blobUrl).then(function(image) {

Specs/DomEventSimulator.js

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ define([
9292
var deltaMode = defaultValue(options.deltaMode, 0);
9393

9494
try {
95-
/*global WheelEvent*/
9695
return new WheelEvent(type, {
9796
view : view,
9897
detail : detail,

Specs/karma-main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function() {
2-
/*global __karma__,require*/
2+
/*global __karma__*/
33
'use strict';
44

55
var included = '';

Specs/spec-main.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
[jasmine-gem]: http://github.com/pivotal/jasmine-gem
1111
*/
1212

13-
/*global require*/
14-
1513
(function() {
1614
'use strict';
1715

@@ -60,7 +58,7 @@
6058
Cesium,
6159
paths) {
6260

63-
/*global jasmineRequire,jasmine,exports,specs*/
61+
/*global jasmineRequire,exports,specs*/
6462

6563
var when = Cesium.when;
6664

Tools/eslint-config-cesium/browser.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
browser: true
88
},
99
rules: {
10-
'no-implicit-globals': 'error'
10+
'no-implicit-globals': 'error',
11+
"no-prototype-builtins": "off"
1112
}
1213
};

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
},
3535
"devDependencies": {
3636
"almond": "^0.3.3",
37-
"aws-sdk": "^2.18.0",
37+
"aws-sdk": "^2.531.0",
3838
"bluebird": "^3.4.6",
3939
"cloc": "^2.3.3",
4040
"compression": "^1.6.2",
41-
"eslint": "^5.13.0",
42-
"eslint-plugin-html": "^5.0.3",
41+
"eslint": "^6.4.0",
42+
"eslint-plugin-html": "^6.0.0",
4343
"express": "^4.15.0",
4444
"globby": "^10.0.0",
4545
"glsl-strip-comments": "^1.0.0",
@@ -48,7 +48,7 @@
4848
"gulp-json-transform": "^0.4.6",
4949
"gulp-rename": "^1.2.2",
5050
"gulp-replace": "^1.0.0",
51-
"gulp-tap": "^1.0.1",
51+
"gulp-tap": "^2.0.0",
5252
"gulp-uglify": "^3.0.0",
5353
"gulp-zip": "^5.0.0",
5454
"jasmine-core": "^3.3.0",
@@ -70,7 +70,7 @@
7070
"mkdirp": "^0.5.1",
7171
"open": "^6.4.0",
7272
"request": "^2.79.0",
73-
"rimraf": "^2.6.1",
73+
"rimraf": "^3.0.0",
7474
"stream-to-promise": "^2.2.0",
7575
"yargs": "^14.0.0"
7676
},

0 commit comments

Comments
 (0)