@loaders.gl/3d-tiles 3.2.7 → 3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/dist.min.js
CHANGED
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
this.worker = isBrowser2 ? this._createBrowserWorker() : this._createNodeWorker();
|
|
263
263
|
}
|
|
264
264
|
static isSupported() {
|
|
265
|
-
return typeof Worker !== "undefined" && isBrowser2 || typeof Worker2 !==
|
|
265
|
+
return typeof Worker !== "undefined" && isBrowser2 || typeof Worker2 !== "undefined" && !isBrowser2;
|
|
266
266
|
}
|
|
267
267
|
destroy() {
|
|
268
268
|
this.onMessage = NOOP;
|
|
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.VERSION = void 0;
|
|
7
|
-
var VERSION = typeof "3.2.
|
|
7
|
+
var VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
|
|
8
8
|
exports.VERSION = VERSION;
|
|
9
9
|
//# sourceMappingURL=version.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = typeof "3.2.
|
|
1
|
+
export const VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/3d-tiles",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
4
4
|
"description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/dist.min.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@loaders.gl/draco": "3.2.
|
|
38
|
-
"@loaders.gl/gltf": "3.2.
|
|
39
|
-
"@loaders.gl/loader-utils": "3.2.
|
|
40
|
-
"@loaders.gl/math": "3.2.
|
|
41
|
-
"@loaders.gl/tiles": "3.2.
|
|
37
|
+
"@loaders.gl/draco": "3.2.8",
|
|
38
|
+
"@loaders.gl/gltf": "3.2.8",
|
|
39
|
+
"@loaders.gl/loader-utils": "3.2.8",
|
|
40
|
+
"@loaders.gl/math": "3.2.8",
|
|
41
|
+
"@loaders.gl/tiles": "3.2.8",
|
|
42
42
|
"@math.gl/core": "^3.5.1",
|
|
43
43
|
"@math.gl/geospatial": "^3.5.1"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@loaders.gl/core": "^3.2.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "93463b94d4b88799ef4152fcb39d68c9fa58b8fc"
|
|
49
49
|
}
|