@loaders.gl/json 4.1.0 → 4.1.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/dist.dev.js +3 -3
- package/dist/geojson-loader.js +1 -1
- package/dist/geojson-worker.js +1 -1
- package/dist/json-loader.js +1 -1
- package/dist/ndgeoson-loader.js +1 -1
- package/dist/ndjson-loader.js +1 -1
- package/package.json +5 -5
package/dist/dist.dev.js
CHANGED
|
@@ -1720,7 +1720,7 @@ Char: ${this.c}`;
|
|
|
1720
1720
|
}
|
|
1721
1721
|
|
|
1722
1722
|
// src/json-loader.ts
|
|
1723
|
-
var VERSION = true ? "4.1.
|
|
1723
|
+
var VERSION = true ? "4.1.2" : "latest";
|
|
1724
1724
|
var JSONLoader = {
|
|
1725
1725
|
name: "JSON",
|
|
1726
1726
|
id: "json",
|
|
@@ -1812,7 +1812,7 @@ Char: ${this.c}`;
|
|
|
1812
1812
|
}
|
|
1813
1813
|
|
|
1814
1814
|
// src/ndjson-loader.ts
|
|
1815
|
-
var VERSION2 = true ? "4.1.
|
|
1815
|
+
var VERSION2 = true ? "4.1.2" : "latest";
|
|
1816
1816
|
var NDJSONLoader = {
|
|
1817
1817
|
name: "NDJSON",
|
|
1818
1818
|
id: "ndjson",
|
|
@@ -2881,7 +2881,7 @@ Char: ${this.c}`;
|
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
2883
|
// src/geojson-loader.ts
|
|
2884
|
-
var VERSION3 = true ? "4.1.
|
|
2884
|
+
var VERSION3 = true ? "4.1.2" : "latest";
|
|
2885
2885
|
var GeoJSONWorkerLoader = {
|
|
2886
2886
|
name: "GeoJSON",
|
|
2887
2887
|
id: "geojson",
|
package/dist/geojson-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { geojsonToBinary } from '@loaders.gl/gis';
|
|
2
2
|
import { parseJSONInBatches } from "./lib/parsers/parse-json-in-batches.js";
|
|
3
|
-
const VERSION = typeof "4.1.
|
|
3
|
+
const VERSION = typeof "4.1.2" !== 'undefined' ? "4.1.2" : 'latest';
|
|
4
4
|
export const GeoJSONWorkerLoader = {
|
|
5
5
|
name: 'GeoJSON',
|
|
6
6
|
id: 'geojson',
|
package/dist/geojson-worker.js
CHANGED
package/dist/json-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseJSONSync } from "./lib/parsers/parse-json.js";
|
|
2
2
|
import { parseJSONInBatches } from "./lib/parsers/parse-json-in-batches.js";
|
|
3
|
-
const VERSION = typeof "4.1.
|
|
3
|
+
const VERSION = typeof "4.1.2" !== 'undefined' ? "4.1.2" : 'latest';
|
|
4
4
|
export const JSONLoader = {
|
|
5
5
|
name: 'JSON',
|
|
6
6
|
id: 'json',
|
package/dist/ndgeoson-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
|
|
2
2
|
import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-in-batches.js";
|
|
3
|
-
const VERSION = typeof "4.1.
|
|
3
|
+
const VERSION = typeof "4.1.2" !== 'undefined' ? "4.1.2" : 'latest';
|
|
4
4
|
export const NDJSONLoader = {
|
|
5
5
|
name: 'NDJSON',
|
|
6
6
|
id: 'ndjson',
|
package/dist/ndjson-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseNDJSONSync } from "./lib/parsers/parse-ndjson.js";
|
|
2
2
|
import { parseNDJSONInBatches } from "./lib/parsers/parse-ndjson-in-batches.js";
|
|
3
|
-
const VERSION = typeof "4.1.
|
|
3
|
+
const VERSION = typeof "4.1.2" !== 'undefined' ? "4.1.2" : 'latest';
|
|
4
4
|
export const NDJSONLoader = {
|
|
5
5
|
name: 'NDJSON',
|
|
6
6
|
id: 'ndjson',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/json",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Framework-independent loader for JSON and streaming JSON formats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"build-worker": "esbuild src/workers/geojson-worker.ts --bundle --outfile=dist/geojson-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@loaders.gl/gis": "4.1.
|
|
47
|
-
"@loaders.gl/loader-utils": "4.1.
|
|
48
|
-
"@loaders.gl/schema": "4.1.
|
|
46
|
+
"@loaders.gl/gis": "4.1.2",
|
|
47
|
+
"@loaders.gl/loader-utils": "4.1.2",
|
|
48
|
+
"@loaders.gl/schema": "4.1.2"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "ade6b732407c6db83e3ff166c09ef239028173cc"
|
|
51
51
|
}
|