@loaders.gl/3d-tiles 4.0.0-alpha.19 → 4.0.0-alpha.20

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
@@ -6786,12 +6786,12 @@
6786
6786
  // ../core/src/lib/loader-utils/get-fetch-function.ts
6787
6787
  function getFetchFunction(options, context) {
6788
6788
  const globalOptions = getGlobalLoaderOptions();
6789
- const fetchOptions = options || globalOptions;
6790
- if (typeof fetchOptions.fetch === "function") {
6791
- return fetchOptions.fetch;
6789
+ const loaderOptions = options || globalOptions;
6790
+ if (typeof loaderOptions.fetch === "function") {
6791
+ return loaderOptions.fetch;
6792
6792
  }
6793
- if (isObject(fetchOptions.fetch)) {
6794
- return (url) => fetchFile(url, fetchOptions);
6793
+ if (isObject(loaderOptions.fetch)) {
6794
+ return (url) => fetchFile(url, loaderOptions.fetch);
6795
6795
  }
6796
6796
  if (context?.fetch) {
6797
6797
  return context?.fetch;
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.VERSION = void 0;
7
- var VERSION = typeof "4.0.0-alpha.19" !== 'undefined' ? "4.0.0-alpha.19" : 'latest';
7
+ var VERSION = typeof "4.0.0-alpha.20" !== 'undefined' ? "4.0.0-alpha.20" : 'latest';
8
8
  exports.VERSION = VERSION;
9
9
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const VERSION = typeof "4.0.0-alpha.19" !== 'undefined' ? "4.0.0-alpha.19" : 'latest';
1
+ export const VERSION = typeof "4.0.0-alpha.20" !== 'undefined' ? "4.0.0-alpha.20" : '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": "4.0.0-alpha.19",
3
+ "version": "4.0.0-alpha.20",
4
4
  "description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -34,11 +34,11 @@
34
34
  "build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/dist.min.js"
35
35
  },
36
36
  "dependencies": {
37
- "@loaders.gl/draco": "4.0.0-alpha.19",
38
- "@loaders.gl/gltf": "4.0.0-alpha.19",
39
- "@loaders.gl/loader-utils": "4.0.0-alpha.19",
40
- "@loaders.gl/math": "4.0.0-alpha.19",
41
- "@loaders.gl/tiles": "4.0.0-alpha.19",
37
+ "@loaders.gl/draco": "4.0.0-alpha.20",
38
+ "@loaders.gl/gltf": "4.0.0-alpha.20",
39
+ "@loaders.gl/loader-utils": "4.0.0-alpha.20",
40
+ "@loaders.gl/math": "4.0.0-alpha.20",
41
+ "@loaders.gl/tiles": "4.0.0-alpha.20",
42
42
  "@math.gl/core": "^3.5.1",
43
43
  "@math.gl/geospatial": "^3.5.1",
44
44
  "@probe.gl/log": "^4.0.4",
@@ -47,5 +47,5 @@
47
47
  "peerDependencies": {
48
48
  "@loaders.gl/core": "^4.0.0-alpha.8"
49
49
  },
50
- "gitHead": "2ca50ec4e1d312c124eb7c93c60ab6fd17ee833e"
50
+ "gitHead": "ac122e83102657c38207d59c631a5ce4e7aa46bd"
51
51
  }