@loaders.gl/arrow 4.4.0-alpha.1 → 4.4.0-alpha.2
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/arrow-worker.js +1 -1
- package/dist/arrow-writer.js +1 -1
- package/dist/dist.min.js +3 -3
- package/dist/exports/arrow-loader.js +1 -1
- package/dist/geoarrow-writer.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/triangulate-on-worker.js +1 -1
- package/package.json +9 -9
package/dist/arrow-worker.js
CHANGED
|
@@ -12800,7 +12800,7 @@ return true;`);
|
|
|
12800
12800
|
}
|
|
12801
12801
|
|
|
12802
12802
|
// src/exports/arrow-loader.ts
|
|
12803
|
-
var VERSION = true ? "4.4.0-alpha.
|
|
12803
|
+
var VERSION = true ? "4.4.0-alpha.1" : "latest";
|
|
12804
12804
|
var ArrowWorkerLoader = {
|
|
12805
12805
|
dataType: null,
|
|
12806
12806
|
batchType: null,
|
package/dist/arrow-writer.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { encodeArrowSync } from "./lib/encoders/encode-arrow.js";
|
|
3
3
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
4
4
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
5
|
-
const VERSION = typeof "4.4.0-alpha.
|
|
5
|
+
const VERSION = typeof "4.4.0-alpha.1" !== 'undefined' ? "4.4.0-alpha.1" : 'latest';
|
|
6
6
|
/** Apache Arrow writer */
|
|
7
7
|
export const ArrowWriter = {
|
|
8
8
|
name: 'Apache Arrow',
|