@loaders.gl/json 4.4.0-alpha.13 → 4.4.0-alpha.14
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.dev.js +3077 -2730
- package/dist/dist.min.js +11 -11
- package/dist/geojson-loader.js +1 -1
- package/dist/geojson-worker.js +3078 -2731
- package/dist/index.cjs +3 -3
- package/dist/json-loader.js +1 -1
- package/dist/json-writer.d.ts +1 -1
- package/dist/ndgeoson-loader.js +1 -1
- package/dist/ndjson-loader.js +1 -1
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -1113,7 +1113,7 @@ function rebuildJsonObject(batch, data) {
|
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
1115
1115
|
// dist/json-loader.js
|
|
1116
|
-
var VERSION = true ? "4.4.0-alpha.
|
|
1116
|
+
var VERSION = true ? "4.4.0-alpha.14" : "latest";
|
|
1117
1117
|
var JSONLoader = {
|
|
1118
1118
|
dataType: null,
|
|
1119
1119
|
batchType: null,
|
|
@@ -1196,7 +1196,7 @@ async function* parseNDJSONInBatches(binaryAsyncIterator, options) {
|
|
|
1196
1196
|
}
|
|
1197
1197
|
|
|
1198
1198
|
// dist/ndjson-loader.js
|
|
1199
|
-
var VERSION2 = true ? "4.4.0-alpha.
|
|
1199
|
+
var VERSION2 = true ? "4.4.0-alpha.14" : "latest";
|
|
1200
1200
|
var NDJSONLoader = {
|
|
1201
1201
|
dataType: null,
|
|
1202
1202
|
batchType: null,
|
|
@@ -1248,7 +1248,7 @@ var JSONWriter = {
|
|
|
1248
1248
|
|
|
1249
1249
|
// dist/geojson-loader.js
|
|
1250
1250
|
var import_gis = require("@loaders.gl/gis");
|
|
1251
|
-
var VERSION3 = true ? "4.4.0-alpha.
|
|
1251
|
+
var VERSION3 = true ? "4.4.0-alpha.14" : "latest";
|
|
1252
1252
|
var GeoJSONWorkerLoader = {
|
|
1253
1253
|
dataType: null,
|
|
1254
1254
|
batchType: null,
|
package/dist/json-loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { parseJSONSync } from "./lib/parsers/parse-json.js";
|
|
|
5
5
|
import { parseJSONInBatches } from "./lib/parsers/parse-json-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.4.0-alpha.
|
|
8
|
+
const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
|
|
9
9
|
export const JSONLoader = {
|
|
10
10
|
dataType: null,
|
|
11
11
|
batchType: null,
|
package/dist/json-writer.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const JSONWriter: {
|
|
|
20
20
|
readonly mimeTypes: ["application/json"];
|
|
21
21
|
readonly options: {};
|
|
22
22
|
readonly text: true;
|
|
23
|
-
readonly encode: (table: Table, options: JSONWriterOptions) => Promise<
|
|
23
|
+
readonly encode: (table: Table, options: JSONWriterOptions) => Promise<ArrayBuffer>;
|
|
24
24
|
readonly encodeTextSync: (table: Table, options: JSONWriterOptions) => string;
|
|
25
25
|
};
|
|
26
26
|
export {};
|
package/dist/ndgeoson-loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
|
|
|
5
5
|
import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-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.4.0-alpha.
|
|
8
|
+
const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
|
|
9
9
|
/** NDGeoJSONLoader */
|
|
10
10
|
export const NDJSONLoader = {
|
|
11
11
|
dataType: null,
|
package/dist/ndjson-loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
|
|
|
5
5
|
import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-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.4.0-alpha.
|
|
8
|
+
const VERSION = typeof "4.4.0-alpha.14" !== 'undefined' ? "4.4.0-alpha.14" : 'latest';
|
|
9
9
|
export const NDJSONLoader = {
|
|
10
10
|
dataType: null,
|
|
11
11
|
batchType: null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/json",
|
|
3
|
-
"version": "4.4.0-alpha.
|
|
3
|
+
"version": "4.4.0-alpha.14",
|
|
4
4
|
"description": "Framework-independent loader for JSON and streaming JSON formats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"build-worker": "esbuild src/workers/geojson-worker.ts --bundle --outfile=dist/geojson-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@loaders.gl/gis": "4.4.0-alpha.
|
|
51
|
-
"@loaders.gl/loader-utils": "4.4.0-alpha.
|
|
52
|
-
"@loaders.gl/schema": "4.4.0-alpha.
|
|
53
|
-
"@loaders.gl/schema-utils": "4.4.0-alpha.
|
|
50
|
+
"@loaders.gl/gis": "4.4.0-alpha.14",
|
|
51
|
+
"@loaders.gl/loader-utils": "4.4.0-alpha.14",
|
|
52
|
+
"@loaders.gl/schema": "4.4.0-alpha.14",
|
|
53
|
+
"@loaders.gl/schema-utils": "4.4.0-alpha.14"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@loaders.gl/core": "4.4.0-alpha.1"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "139714d328ba86acff50738576a663917f76db80"
|
|
59
59
|
}
|