@loaders.gl/tile-converter 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
@@ -73606,7 +73606,7 @@ var WorkerThread = class {
73606
73606
  this.worker = isBrowser2 ? this._createBrowserWorker() : this._createNodeWorker();
73607
73607
  }
73608
73608
  static isSupported() {
73609
- return typeof Worker !== "undefined" && isBrowser2 || typeof worker_threads_exports.Worker !== void 0;
73609
+ return typeof Worker !== "undefined" && isBrowser2 || typeof worker_threads_exports.Worker !== "undefined" && !isBrowser2;
73610
73610
  }
73611
73611
  destroy() {
73612
73612
  this.onMessage = NOOP;
@@ -8,7 +8,7 @@ exports._typecheckI3SAttributesWorker = exports.Tile3dAttributesWorker = void 0;
8
8
 
9
9
  var _workerUtils = require("@loaders.gl/worker-utils");
10
10
 
11
- var VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
11
+ var VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
12
12
  var Tile3dAttributesWorker = {
13
13
  id: '3d-tiles-attributes',
14
14
  name: '3DTiles Attributes Worker',
@@ -8,7 +8,7 @@ exports._typecheckI3SAttributesWorker = exports.I3SAttributesWorker = void 0;
8
8
 
9
9
  var _workerUtils = require("@loaders.gl/worker-utils");
10
10
 
11
- var VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
11
+ var VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
12
12
  var I3SAttributesWorker = {
13
13
  id: 'i3s-attributes',
14
14
  name: 'I3S Attributes Worker',
@@ -13,7 +13,7 @@ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/
13
13
 
14
14
  var _geoid = require("@math.gl/geoid");
15
15
 
16
- var VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
16
+ var VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
17
17
  var PGMLoader = {
18
18
  name: 'PGM - Netpbm grayscale image format',
19
19
  id: 'pgm',
@@ -1,5 +1,5 @@
1
1
  import { processOnWorker } from '@loaders.gl/worker-utils';
2
- const VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
2
+ const VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
3
3
  export const Tile3dAttributesWorker = {
4
4
  id: '3d-tiles-attributes',
5
5
  name: '3DTiles Attributes Worker',
@@ -1,5 +1,5 @@
1
1
  import { processOnWorker } from '@loaders.gl/worker-utils';
2
- const VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
2
+ const VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
3
3
  export const I3SAttributesWorker = {
4
4
  id: 'i3s-attributes',
5
5
  name: 'I3S Attributes Worker',
@@ -1,4 +1,4 @@
1
- const VERSION = typeof "3.2.7" !== 'undefined' ? "3.2.7" : 'latest';
1
+ const VERSION = typeof "3.2.8" !== 'undefined' ? "3.2.8" : 'latest';
2
2
  import { parsePGM } from '@math.gl/geoid';
3
3
  export const PGMLoader = {
4
4
  name: 'PGM - Netpbm grayscale image format',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/tile-converter",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
4
4
  "description": "Converter",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -43,19 +43,19 @@
43
43
  "build-3d-tiles-attributes-worker": "esbuild src/workers/3d-tiles-attributes-worker.ts --outfile=dist/3d-tiles-attributes-worker.js --platform=node --target=esnext,node12 --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
44
44
  },
45
45
  "dependencies": {
46
- "@loaders.gl/3d-tiles": "3.2.7",
47
- "@loaders.gl/crypto": "3.2.7",
48
- "@loaders.gl/draco": "3.2.7",
49
- "@loaders.gl/gltf": "3.2.7",
50
- "@loaders.gl/i3s": "3.2.7",
51
- "@loaders.gl/images": "3.2.7",
52
- "@loaders.gl/loader-utils": "3.2.7",
53
- "@loaders.gl/polyfills": "3.2.7",
54
- "@loaders.gl/schema": "3.2.7",
55
- "@loaders.gl/textures": "3.2.7",
56
- "@loaders.gl/tiles": "3.2.7",
57
- "@loaders.gl/worker-utils": "3.2.7",
58
- "@loaders.gl/zip": "3.2.7",
46
+ "@loaders.gl/3d-tiles": "3.2.8",
47
+ "@loaders.gl/crypto": "3.2.8",
48
+ "@loaders.gl/draco": "3.2.8",
49
+ "@loaders.gl/gltf": "3.2.8",
50
+ "@loaders.gl/i3s": "3.2.8",
51
+ "@loaders.gl/images": "3.2.8",
52
+ "@loaders.gl/loader-utils": "3.2.8",
53
+ "@loaders.gl/polyfills": "3.2.8",
54
+ "@loaders.gl/schema": "3.2.8",
55
+ "@loaders.gl/textures": "3.2.8",
56
+ "@loaders.gl/tiles": "3.2.8",
57
+ "@loaders.gl/worker-utils": "3.2.8",
58
+ "@loaders.gl/zip": "3.2.8",
59
59
  "@luma.gl/engine": "^8.5.4",
60
60
  "@math.gl/core": "^3.5.1",
61
61
  "@math.gl/culling": "^3.5.1",
@@ -75,5 +75,5 @@
75
75
  "peerDependencies": {
76
76
  "@loaders.gl/core": "^3.2.0"
77
77
  },
78
- "gitHead": "78b3cc95d3159ac4fc99bd1474ab67008175f2f8"
78
+ "gitHead": "93463b94d4b88799ef4152fcb39d68c9fa58b8fc"
79
79
  }