@loaders.gl/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 +1 -1
- package/package.json +4 -4
package/dist/dist.min.js
CHANGED
|
@@ -3666,7 +3666,7 @@
|
|
|
3666
3666
|
this.worker = isBrowser2 ? this._createBrowserWorker() : this._createNodeWorker();
|
|
3667
3667
|
}
|
|
3668
3668
|
static isSupported() {
|
|
3669
|
-
return typeof Worker !== "undefined" && isBrowser2 || typeof Worker2 !==
|
|
3669
|
+
return typeof Worker !== "undefined" && isBrowser2 || typeof Worker2 !== "undefined" && !isBrowser2;
|
|
3670
3670
|
}
|
|
3671
3671
|
destroy() {
|
|
3672
3672
|
this.onMessage = NOOP;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/tiles",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
4
4
|
"description": "Common components for different tiles loaders.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/dist.min.js"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@loaders.gl/loader-utils": "3.2.
|
|
37
|
-
"@loaders.gl/math": "3.2.
|
|
36
|
+
"@loaders.gl/loader-utils": "3.2.8",
|
|
37
|
+
"@loaders.gl/math": "3.2.8",
|
|
38
38
|
"@math.gl/core": "^3.5.1",
|
|
39
39
|
"@math.gl/culling": "^3.5.1",
|
|
40
40
|
"@math.gl/geospatial": "^3.5.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@loaders.gl/core": "^3.2.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "93463b94d4b88799ef4152fcb39d68c9fa58b8fc"
|
|
48
48
|
}
|