@loaders.gl/las 4.3.3 → 4.3.4

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.
@@ -1,6 +1,6 @@
1
1
  // __VERSION__ is injected by babel-plugin-version-inline
2
2
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
3
- const VERSION = typeof "4.3.2" !== 'undefined' ? "4.3.2" : 'latest';
3
+ const VERSION = typeof "4.3.3" !== 'undefined' ? "4.3.3" : 'latest';
4
4
  /**
5
5
  * Loader for the LAS (LASer) point cloud format
6
6
  * @note Does not support LAS v1.4
@@ -217,7 +217,7 @@
217
217
  }
218
218
 
219
219
  // src/las-loader.ts
220
- var VERSION = true ? "4.3.2" : "latest";
220
+ var VERSION = true ? "4.3.3" : "latest";
221
221
  var LASLoader = {
222
222
  dataType: null,
223
223
  batchType: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/las",
3
- "version": "4.3.3",
3
+ "version": "4.3.4",
4
4
  "description": "Framework-independent loader for the LAS and LAZ formats",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -49,12 +49,12 @@
49
49
  "build-worker": "esbuild src/workers/las-worker.ts --bundle --outfile=dist/las-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
50
50
  },
51
51
  "dependencies": {
52
- "@loaders.gl/loader-utils": "4.3.3",
53
- "@loaders.gl/schema": "4.3.3",
52
+ "@loaders.gl/loader-utils": "4.3.4",
53
+ "@loaders.gl/schema": "4.3.4",
54
54
  "laz-perf": "^0.0.6"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@loaders.gl/core": "^4.3.0"
58
58
  },
59
- "gitHead": "65cb9a984f8aa95d11f50e92189d7fb32786dc41"
59
+ "gitHead": "d18246f4ef6382f787a6ae2e9e21d8a7f40e5917"
60
60
  }