@loaders.gl/json 3.2.0-alpha.2 → 3.2.0-alpha.3
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 +3 -2
- 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.0-alpha.
|
|
32
|
+
var VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
24
|
+
var VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
18
|
+
var VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
18
|
+
var VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
4
|
+
const VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
3
|
+
const VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
3
|
+
const VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : '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.0-alpha.
|
|
3
|
+
const VERSION = typeof "3.2.0-alpha.3" !== 'undefined' ? "3.2.0-alpha.3" : 'latest';
|
|
4
4
|
export const NDJSONLoader = {
|
|
5
5
|
name: 'NDJSON',
|
|
6
6
|
id: 'ndjson',
|
package/dist/geojson-worker.js
CHANGED
|
@@ -118,12 +118,13 @@
|
|
|
118
118
|
switch (type) {
|
|
119
119
|
case "process":
|
|
120
120
|
try {
|
|
121
|
-
const { input, options = {} } = payload;
|
|
121
|
+
const { input, options = {}, context = {} } = payload;
|
|
122
122
|
const result = await parseData({
|
|
123
123
|
loader,
|
|
124
124
|
arrayBuffer: input,
|
|
125
125
|
options,
|
|
126
126
|
context: {
|
|
127
|
+
...context,
|
|
127
128
|
parse: parseOnMainThread
|
|
128
129
|
}
|
|
129
130
|
});
|
|
@@ -2266,7 +2267,7 @@ Char: ${this.c}`;
|
|
|
2266
2267
|
}
|
|
2267
2268
|
|
|
2268
2269
|
// src/geojson-loader.ts
|
|
2269
|
-
var VERSION = true ? "3.2.0-alpha.
|
|
2270
|
+
var VERSION = true ? "3.2.0-alpha.3" : "latest";
|
|
2270
2271
|
var DEFAULT_GEOJSON_LOADER_OPTIONS = {
|
|
2271
2272
|
geojson: {
|
|
2272
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.0-alpha.
|
|
3
|
+
"version": "3.2.0-alpha.3",
|
|
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.0-alpha.
|
|
39
|
-
"@loaders.gl/loader-utils": "3.2.0-alpha.
|
|
40
|
-
"@loaders.gl/schema": "3.2.0-alpha.
|
|
38
|
+
"@loaders.gl/gis": "3.2.0-alpha.3",
|
|
39
|
+
"@loaders.gl/loader-utils": "3.2.0-alpha.3",
|
|
40
|
+
"@loaders.gl/schema": "3.2.0-alpha.3"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f0d4b801efeb7094283106352ee759eccfb21f10"
|
|
43
43
|
}
|