@loaders.gl/arrow 4.2.0-beta.1 → 4.2.0
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-loader.js +1 -1
- package/dist/arrow-worker.js +1 -1
- package/dist/arrow-writer.js +1 -1
- package/dist/dist.min.js +5 -5
- package/dist/geoarrow-writer.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +2 -2
- package/dist/triangulate-on-worker.js +1 -1
- package/package.json +7 -7
package/dist/arrow-loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { parseArrowSync } from "./parsers/parse-arrow-sync.js";
|
|
|
5
5
|
import { parseArrowInBatches } from "./parsers/parse-arrow-in-batches.js";
|
|
6
6
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
7
7
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
8
|
-
const VERSION = typeof "4.2.0-
|
|
8
|
+
const VERSION = typeof "4.2.0-beta.2" !== 'undefined' ? "4.2.0-beta.2" : 'latest';
|
|
9
9
|
/** ArrowJS table loader */
|
|
10
10
|
export const ArrowWorkerLoader = {
|
|
11
11
|
dataType: null,
|
package/dist/arrow-worker.js
CHANGED
|
@@ -12499,7 +12499,7 @@ return true;`);
|
|
|
12499
12499
|
}
|
|
12500
12500
|
|
|
12501
12501
|
// src/arrow-loader.ts
|
|
12502
|
-
var VERSION = true ? "4.2.0-
|
|
12502
|
+
var VERSION = true ? "4.2.0-beta.2" : "latest";
|
|
12503
12503
|
var ArrowWorkerLoader = {
|
|
12504
12504
|
dataType: null,
|
|
12505
12505
|
batchType: null,
|
package/dist/arrow-writer.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { encodeArrowSync } from "./lib/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.2.0-
|
|
5
|
+
const VERSION = typeof "4.2.0-beta.2" !== 'undefined' ? "4.2.0-beta.2" : 'latest';
|
|
6
6
|
/** Apache Arrow writer */
|
|
7
7
|
export const ArrowWriter = {
|
|
8
8
|
name: 'Apache Arrow',
|