@loaders.gl/las 4.4.0-alpha.10 → 4.4.0-alpha.11
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 +5 -5
- package/dist/index.cjs +1 -1
- package/dist/las-loader.js +1 -1
- package/dist/las-worker.js +1 -1
- package/dist/libs/libs/laz-perf/laz-perf.ts +20616 -0
- package/dist/libs/libs/laz-rs-wasm/laz_rs_wasm.d.ts +80 -0
- package/dist/libs/libs/laz-rs-wasm/laz_rs_wasm.js +477 -0
- package/dist/libs/libs/laz-rs-wasm/laz_rs_wasm_bg.wasm +0 -0
- package/dist/libs/libs/laz-rs-wasm/laz_rs_wasm_bg.wasm.d.ts +31 -0
- package/dist/libs/libs/laz-rs-wasm/package.json +19 -0
- package/package.json +7 -6
package/dist/index.cjs
CHANGED
package/dist/las-loader.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { LASFormat } from "./las-format.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-alpha.
|
|
7
|
+
const VERSION = typeof "4.4.0-alpha.11" !== 'undefined' ? "4.4.0-alpha.11" : 'latest';
|
|
8
8
|
/**
|
|
9
9
|
* Loader for the LAS (LASer) point cloud format
|
|
10
10
|
*/
|