@loaders.gl/parquet 4.3.0-beta.1 → 4.3.0-beta.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/index.cjs +3 -3
- package/dist/index.cjs.map +2 -2
- package/dist/lib/constants.js +1 -1
- package/dist/parquet-loader.js +1 -1
- package/dist/parquet-writer.js +1 -1
- package/package.json +9 -9
package/dist/lib/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Copyright (c) vis.gl contributors
|
|
4
4
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
5
5
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
6
|
-
export const VERSION = typeof "4.3.0-
|
|
6
|
+
export const VERSION = typeof "4.3.0-beta.1" !== 'undefined' ? "4.3.0-beta.1" : 'latest';
|
|
7
7
|
export const PARQUET_WASM_URL = 'https://unpkg.com/parquet-wasm@0.6.1/esm/parquet_wasm_bg.wasm';
|
|
8
8
|
/**
|
|
9
9
|
* Parquet File Magic String
|
package/dist/parquet-loader.js
CHANGED
|
@@ -12,7 +12,7 @@ import { Buffer } from "./polyfills/buffer/install-buffer-polyfill.js";
|
|
|
12
12
|
export { Buffer };
|
|
13
13
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
14
14
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
15
|
-
const VERSION = typeof "4.3.0-
|
|
15
|
+
const VERSION = typeof "4.3.0-beta.1" !== 'undefined' ? "4.3.0-beta.1" : 'latest';
|
|
16
16
|
/**
|
|
17
17
|
* ParquetJS table loader
|
|
18
18
|
*/
|
package/dist/parquet-writer.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Copyright (c) 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.3.0-
|
|
6
|
+
const VERSION = typeof "4.3.0-beta.1" !== 'undefined' ? "4.3.0-beta.1" : 'latest';
|
|
7
7
|
export const ParquetWriter = {
|
|
8
8
|
name: 'Apache Parquet',
|
|
9
9
|
id: 'parquet',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/parquet",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-beta.2",
|
|
4
4
|
"description": "Framework-independent loader for Apache Parquet files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"base64-js and ieee754 are used by buffer polyfill"
|
|
61
61
|
],
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@loaders.gl/arrow": "4.3.0-beta.
|
|
64
|
-
"@loaders.gl/bson": "4.3.0-beta.
|
|
65
|
-
"@loaders.gl/compression": "4.3.0-beta.
|
|
66
|
-
"@loaders.gl/gis": "4.3.0-beta.
|
|
67
|
-
"@loaders.gl/loader-utils": "4.3.0-beta.
|
|
68
|
-
"@loaders.gl/schema": "4.3.0-beta.
|
|
69
|
-
"@loaders.gl/wkt": "4.3.0-beta.
|
|
63
|
+
"@loaders.gl/arrow": "4.3.0-beta.2",
|
|
64
|
+
"@loaders.gl/bson": "4.3.0-beta.2",
|
|
65
|
+
"@loaders.gl/compression": "4.3.0-beta.2",
|
|
66
|
+
"@loaders.gl/gis": "4.3.0-beta.2",
|
|
67
|
+
"@loaders.gl/loader-utils": "4.3.0-beta.2",
|
|
68
|
+
"@loaders.gl/schema": "4.3.0-beta.2",
|
|
69
|
+
"@loaders.gl/wkt": "4.3.0-beta.2",
|
|
70
70
|
"@probe.gl/log": "^4.0.9",
|
|
71
71
|
"async-mutex": "^0.2.2",
|
|
72
72
|
"base64-js": "^1.3.1",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"@loaders.gl/core": "^4.0.0",
|
|
95
95
|
"apache-arrow": ">= 15.0.0"
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "a61003f2bb56acbdaef07a03bc39d4c7830afdcc"
|
|
98
98
|
}
|