@loaders.gl/json 4.1.0-alpha.7 → 4.1.0-alpha.8

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 CHANGED
@@ -1717,7 +1717,7 @@ Char: ${this.c}`;
1717
1717
  }
1718
1718
 
1719
1719
  // src/json-loader.ts
1720
- var VERSION = true ? "4.1.0-alpha.7" : "latest";
1720
+ var VERSION = true ? "4.1.0-alpha.8" : "latest";
1721
1721
  var JSONLoader = {
1722
1722
  name: "JSON",
1723
1723
  id: "json",
@@ -1809,7 +1809,7 @@ Char: ${this.c}`;
1809
1809
  }
1810
1810
 
1811
1811
  // src/ndjson-loader.ts
1812
- var VERSION2 = true ? "4.1.0-alpha.7" : "latest";
1812
+ var VERSION2 = true ? "4.1.0-alpha.8" : "latest";
1813
1813
  var NDJSONLoader = {
1814
1814
  name: "NDJSON",
1815
1815
  id: "ndjson",
@@ -2878,7 +2878,7 @@ Char: ${this.c}`;
2878
2878
  }
2879
2879
 
2880
2880
  // src/geojson-loader.ts
2881
- var VERSION3 = true ? "4.1.0-alpha.7" : "latest";
2881
+ var VERSION3 = true ? "4.1.0-alpha.8" : "latest";
2882
2882
  var GeoJSONWorkerLoader = {
2883
2883
  name: "GeoJSON",
2884
2884
  id: "geojson",
@@ -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.0-alpha.7" !== 'undefined' ? "4.1.0-alpha.7" : 'latest';
3
+ const VERSION = typeof "4.1.0-alpha.8" !== 'undefined' ? "4.1.0-alpha.8" : 'latest';
4
4
  export const GeoJSONWorkerLoader = {
5
5
  name: 'GeoJSON',
6
6
  id: 'geojson',
@@ -2430,7 +2430,7 @@ Char: ${this.c}`;
2430
2430
  }
2431
2431
 
2432
2432
  // src/geojson-loader.ts
2433
- var VERSION = true ? "4.1.0-alpha.7" : "latest";
2433
+ var VERSION = true ? "4.1.0-alpha.8" : "latest";
2434
2434
  var GeoJSONWorkerLoader = {
2435
2435
  name: "GeoJSON",
2436
2436
  id: "geojson",
@@ -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.0-alpha.7" !== 'undefined' ? "4.1.0-alpha.7" : 'latest';
3
+ const VERSION = typeof "4.1.0-alpha.8" !== 'undefined' ? "4.1.0-alpha.8" : 'latest';
4
4
  export const JSONLoader = {
5
5
  name: 'JSON',
6
6
  id: 'json',
@@ -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.0-alpha.7" !== 'undefined' ? "4.1.0-alpha.7" : 'latest';
3
+ const VERSION = typeof "4.1.0-alpha.8" !== 'undefined' ? "4.1.0-alpha.8" : 'latest';
4
4
  export const NDJSONLoader = {
5
5
  name: 'NDJSON',
6
6
  id: 'ndjson',
@@ -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.0-alpha.7" !== 'undefined' ? "4.1.0-alpha.7" : 'latest';
3
+ const VERSION = typeof "4.1.0-alpha.8" !== 'undefined' ? "4.1.0-alpha.8" : '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.0-alpha.7",
3
+ "version": "4.1.0-alpha.8",
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.0-alpha.7",
47
- "@loaders.gl/loader-utils": "4.1.0-alpha.7",
48
- "@loaders.gl/schema": "4.1.0-alpha.7"
46
+ "@loaders.gl/gis": "4.1.0-alpha.8",
47
+ "@loaders.gl/loader-utils": "4.1.0-alpha.8",
48
+ "@loaders.gl/schema": "4.1.0-alpha.8"
49
49
  },
50
- "gitHead": "3dfa49bc4ec68b3c599082c1790da4156b7e5b34"
50
+ "gitHead": "144bb2f0788b5495541d1b5f7276b02ee70bf6d5"
51
51
  }