@loaders.gl/potree 4.4.0 → 4.4.1

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/index.cjs CHANGED
@@ -28,7 +28,7 @@ __export(dist_exports, {
28
28
  module.exports = __toCommonJS(dist_exports);
29
29
 
30
30
  // dist/potree-loader.js
31
- var VERSION = true ? "4.4.0" : "latest";
31
+ var VERSION = true ? "4.4.1" : "latest";
32
32
  var PotreeLoader = {
33
33
  dataType: null,
34
34
  batchType: null,
@@ -115,7 +115,7 @@ function buildHierarchy(flatNodes, options = {}) {
115
115
  }
116
116
 
117
117
  // dist/potree-hierarchy-chunk-loader.js
118
- var VERSION2 = true ? "4.4.0" : "latest";
118
+ var VERSION2 = true ? "4.4.1" : "latest";
119
119
  var PotreeHierarchyChunkLoader = {
120
120
  dataType: null,
121
121
  batchType: null,
@@ -4,7 +4,7 @@
4
4
  import { parsePotreeHierarchyChunk } from "./parsers/parse-potree-hierarchy-chunk.js";
5
5
  // __VERSION__ is injected by babel-plugin-version-inline
6
6
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
7
- const VERSION = typeof "4.4.0" !== 'undefined' ? "4.4.0" : 'latest';
7
+ const VERSION = typeof "4.4.1" !== 'undefined' ? "4.4.1" : 'latest';
8
8
  /** Potree hierarchy chunk loader */
9
9
  export const PotreeHierarchyChunkLoader = {
10
10
  dataType: null,
@@ -3,7 +3,7 @@
3
3
  // Copyright vis.gl contributors
4
4
  // __VERSION__ is injected by babel-plugin-version-inline
5
5
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
6
- const VERSION = typeof "4.4.0" !== 'undefined' ? "4.4.0" : 'latest';
6
+ const VERSION = typeof "4.4.1" !== 'undefined' ? "4.4.1" : 'latest';
7
7
  /** Potree loader */
8
8
  export const PotreeLoader = {
9
9
  dataType: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/potree",
3
- "version": "4.4.0",
3
+ "version": "4.4.1",
4
4
  "description": "potree loaders for large point clouds.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -44,14 +44,14 @@
44
44
  "build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
45
45
  },
46
46
  "dependencies": {
47
- "@loaders.gl/las": "4.4.0",
48
- "@loaders.gl/math": "4.4.0",
49
- "@loaders.gl/schema": "4.4.0",
47
+ "@loaders.gl/las": "4.4.1",
48
+ "@loaders.gl/math": "4.4.1",
49
+ "@loaders.gl/schema": "4.4.1",
50
50
  "@math.gl/core": "^4.1.0",
51
51
  "@math.gl/proj4": "^4.1.0"
52
52
  },
53
53
  "peerDependencies": {
54
- "@loaders.gl/core": "4.4.0-alpha.1"
54
+ "@loaders.gl/core": "~4.4.0"
55
55
  },
56
- "gitHead": "b8a23bc05946bde7089936ff3ea1651ee9a45536"
56
+ "gitHead": "18d4fdf37667eaf6ec832473a8ae89907e391992"
57
57
  }