Skip to content

Commit

Permalink
Bump math.gl and probe.gl dependencies (#4029)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress authored Dec 17, 2019
1 parent f43214c commit 8674bd3
Show file tree
Hide file tree
Showing 9 changed files with 438 additions and 385 deletions.
4 changes: 2 additions & 2 deletions modules/aggregation-layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env.dev"
},
"dependencies": {
"@luma.gl/shadertools": "^8.0.0-beta.3",
"@math.gl/web-mercator": "^3.1.0-alpha",
"@luma.gl/shadertools": "^8.0.0-beta.4",
"@math.gl/web-mercator": "^3.1.1",
"d3-hexbin": "^0.2.1"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions modules/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"dependencies": {
"@loaders.gl/core": "^2.0.0-beta.5",
"@loaders.gl/images": "^2.0.0-beta.5",
"@luma.gl/core": "^8.0.0-beta.3",
"@math.gl/web-mercator": "^3.1.0-alpha",
"@luma.gl/core": "^8.0.0-beta.4",
"@math.gl/web-mercator": "^3.1.1",
"gl-matrix": "^3.0.0",
"math.gl": "^3.0.0",
"math.gl": "^3.1.1",
"mjolnir.js": "^2.1.2",
"probe.gl": "^3.2.0-beta.3"
"probe.gl": "^3.2.0"
}
}
6 changes: 3 additions & 3 deletions modules/geo-layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"@loaders.gl/3d-tiles": "^2.0.0-beta.5",
"@loaders.gl/core": "^2.0.0-beta.5",
"@loaders.gl/gltf": "^2.0.0-beta.5",
"@math.gl/culling": "^3.0.0",
"@math.gl/geospatial": "^3.0.0",
"@math.gl/web-mercator": "^3.1.0-alpha",
"@math.gl/culling": "^3.1.1",
"@math.gl/geospatial": "^3.1.1",
"@math.gl/web-mercator": "^3.1.1",
"h3-js": "^3.6.0",
"long": "^3.2.0",
"s2-geometry": "^1.2.10"
Expand Down
2 changes: 1 addition & 1 deletion modules/jupyter-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@loaders.gl/3d-tiles": "^2.0.0-beta.5",
"@loaders.gl/core": "^2.0.0-beta.5",
"@loaders.gl/csv": "^2.0.0-beta.5",
"@luma.gl/constants": "^8.0.0-beta.3",
"@luma.gl/constants": "^8.0.0-beta.4",
"mapbox-gl": "^1.2.1"
},
"jupyterlab": {
Expand Down
2 changes: 1 addition & 1 deletion modules/mesh-layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"@deck.gl/core": "^8.0.0-beta"
},
"dependencies": {
"@luma.gl/experimental": "^8.0.0-beta.3"
"@luma.gl/experimental": "^8.0.0-beta.4"
}
}
6 changes: 3 additions & 3 deletions modules/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
],
"peerDependencies": {
"@deck.gl/core": "^8.0.0-beta",
"@luma.gl/test-utils": "^8.0.0-beta.3",
"@luma.gl/webgl": "^8.0.0-beta.3",
"@probe.gl/test-utils": "^3.2.0-beta"
"@luma.gl/test-utils": "^8.0.0-beta.4",
"@luma.gl/webgl": "^8.0.0-beta.4",
"@probe.gl/test-utils": "^3.2.0"
},
"scripts": {}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
"jsdom": false
},
"devDependencies": {
"@luma.gl/engine": "^8.0.0-beta.3",
"@luma.gl/test-utils": "^8.0.0-beta.3",
"@probe.gl/bench": "^3.2.0-beta.3",
"@probe.gl/test-utils": "^3.2.0-beta.3",
"@luma.gl/engine": "^8.0.0-beta.4",
"@luma.gl/test-utils": "^8.0.0-beta.4",
"@probe.gl/bench": "^3.2.0",
"@probe.gl/test-utils": "^3.2.0",
"@loaders.gl/csv": "^2.0.0-beta.5",
"@loaders.gl/polyfills": "^2.0.0-beta.5",
"babel-loader": "^8.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function runOnGPU({
}

export function verifyResult({t, name, actual, expected, sliceActual = false}) {
actual = Number.isFinite(actual) ? [actual] : actual;
expected = Array.isArray(expected) ? expected : [expected];
// Convert TypedArray to regular array
// TODO: remove after https://github.com/uber-web/math.gl/pull/29
Expand Down
Loading

0 comments on commit 8674bd3

Please sign in to comment.