@loaders.gl/json 3.2.10 → 3.2.11
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/es5/geojson-loader.js +1 -1
- package/dist/es5/json-loader.js +1 -1
- package/dist/es5/ndjgeoson-loader.js +1 -1
- package/dist/es5/ndjson-loader.js +1 -1
- package/dist/esm/geojson-loader.js +1 -1
- package/dist/esm/json-loader.js +1 -1
- package/dist/esm/ndjgeoson-loader.js +1 -1
- package/dist/esm/ndjson-loader.js +1 -1
- package/dist/geojson-worker.js +1 -1
- package/package.json +5 -5
|
@@ -29,7 +29,7 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
|
|
|
29
29
|
|
|
30
30
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
31
31
|
|
|
32
|
-
var VERSION = typeof "3.2.
|
|
32
|
+
var VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
33
33
|
var DEFAULT_GEOJSON_LOADER_OPTIONS = {
|
|
34
34
|
geojson: {
|
|
35
35
|
shape: 'object-row-table'
|
package/dist/es5/json-loader.js
CHANGED
|
@@ -21,7 +21,7 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
|
|
|
21
21
|
|
|
22
22
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
23
23
|
|
|
24
|
-
var VERSION = typeof "3.2.
|
|
24
|
+
var VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
25
25
|
var DEFAULT_JSON_LOADER_OPTIONS = {
|
|
26
26
|
json: {
|
|
27
27
|
shape: 'row-table',
|
|
@@ -15,7 +15,7 @@ var _parseNdjson = _interopRequireDefault(require("./lib/parse-ndjson"));
|
|
|
15
15
|
|
|
16
16
|
var _parseNdjsonInBatches = _interopRequireDefault(require("./lib/parse-ndjson-in-batches"));
|
|
17
17
|
|
|
18
|
-
var VERSION = typeof "3.2.
|
|
18
|
+
var VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
19
19
|
var DEFAULT_NDGEOJSON_LOADER_OPTIONS = {
|
|
20
20
|
geojson: {
|
|
21
21
|
shape: 'object-row-table'
|
|
@@ -15,7 +15,7 @@ var _parseNdjson = _interopRequireDefault(require("./lib/parse-ndjson"));
|
|
|
15
15
|
|
|
16
16
|
var _parseNdjsonInBatches = _interopRequireDefault(require("./lib/parse-ndjson-in-batches"));
|
|
17
17
|
|
|
18
|
-
var VERSION = typeof "3.2.
|
|
18
|
+
var VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
19
19
|
var NDJSONLoader = {
|
|
20
20
|
name: 'NDJSON',
|
|
21
21
|
id: 'ndjson',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { geojsonToBinary } from '@loaders.gl/gis';
|
|
2
2
|
import parseJSONSync from './lib/parse-json';
|
|
3
3
|
import parseJSONInBatches from './lib/parse-json-in-batches';
|
|
4
|
-
const VERSION = typeof "3.2.
|
|
4
|
+
const VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
5
5
|
const DEFAULT_GEOJSON_LOADER_OPTIONS = {
|
|
6
6
|
geojson: {
|
|
7
7
|
shape: 'object-row-table'
|
package/dist/esm/json-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import parseJSONSync from './lib/parse-json';
|
|
2
2
|
import parseJSONInBatches from './lib/parse-json-in-batches';
|
|
3
|
-
const VERSION = typeof "3.2.
|
|
3
|
+
const VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
4
4
|
const DEFAULT_JSON_LOADER_OPTIONS = {
|
|
5
5
|
json: {
|
|
6
6
|
shape: 'row-table',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import parseNDJSONSync from './lib/parse-ndjson';
|
|
2
2
|
import parseNDJSONInBatches from './lib/parse-ndjson-in-batches';
|
|
3
|
-
const VERSION = typeof "3.2.
|
|
3
|
+
const VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
4
4
|
const DEFAULT_NDGEOJSON_LOADER_OPTIONS = {
|
|
5
5
|
geojson: {
|
|
6
6
|
shape: 'object-row-table'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import parseNDJSONSync from './lib/parse-ndjson';
|
|
2
2
|
import parseNDJSONInBatches from './lib/parse-ndjson-in-batches';
|
|
3
|
-
const VERSION = typeof "3.2.
|
|
3
|
+
const VERSION = typeof "3.2.11" !== 'undefined' ? "3.2.11" : 'latest';
|
|
4
4
|
export const NDJSONLoader = {
|
|
5
5
|
name: 'NDJSON',
|
|
6
6
|
id: 'ndjson',
|
package/dist/geojson-worker.js
CHANGED
|
@@ -2267,7 +2267,7 @@ Char: ${this.c}`;
|
|
|
2267
2267
|
}
|
|
2268
2268
|
|
|
2269
2269
|
// src/geojson-loader.ts
|
|
2270
|
-
var VERSION = true ? "3.2.
|
|
2270
|
+
var VERSION = true ? "3.2.11" : "latest";
|
|
2271
2271
|
var DEFAULT_GEOJSON_LOADER_OPTIONS = {
|
|
2272
2272
|
geojson: {
|
|
2273
2273
|
shape: "object-row-table"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/json",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.11",
|
|
4
4
|
"description": "Framework-independent loader for JSON and streaming JSON formats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"build-worker": "esbuild src/workers/geojson-worker.ts --bundle --outfile=dist/geojson-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@loaders.gl/gis": "3.2.
|
|
39
|
-
"@loaders.gl/loader-utils": "3.2.
|
|
40
|
-
"@loaders.gl/schema": "3.2.
|
|
38
|
+
"@loaders.gl/gis": "3.2.11",
|
|
39
|
+
"@loaders.gl/loader-utils": "3.2.11",
|
|
40
|
+
"@loaders.gl/schema": "3.2.11"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "580a784fe09e381fc6c2139a3d30882ffc3fa639"
|
|
43
43
|
}
|