@loaders.gl/3d-tiles 3.2.0 → 3.2.1
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.min.js
CHANGED
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
var DEFAULT_VERSION, VERSION;
|
|
65
65
|
var init_version = __esm({
|
|
66
66
|
"../worker-utils/src/lib/env-utils/version.ts"() {
|
|
67
|
-
DEFAULT_VERSION = "
|
|
67
|
+
DEFAULT_VERSION = "latest";
|
|
68
68
|
VERSION = typeof __VERSION__ !== "undefined" ? __VERSION__ : DEFAULT_VERSION;
|
|
69
69
|
if (typeof __VERSION__ === "undefined") {
|
|
70
70
|
console.error("loaders.gl: The __VERSION__ variable is not injected using babel plugin. Latest unstable workers would be fetched from the CDN.");
|
|
@@ -150,12 +150,6 @@
|
|
|
150
150
|
var init_worker_threads_browser = __esm({
|
|
151
151
|
"../worker-utils/src/lib/node/worker_threads-browser.js"() {
|
|
152
152
|
Worker2 = class {
|
|
153
|
-
on(message, cb) {
|
|
154
|
-
}
|
|
155
|
-
postMessage(...args) {
|
|
156
|
-
}
|
|
157
|
-
terminate() {
|
|
158
|
-
}
|
|
159
153
|
};
|
|
160
154
|
}
|
|
161
155
|
});
|
|
@@ -542,7 +536,7 @@
|
|
|
542
536
|
var init_get_worker_url = __esm({
|
|
543
537
|
"../worker-utils/src/lib/worker-api/get-worker-url.ts"() {
|
|
544
538
|
init_assert2();
|
|
545
|
-
NPM_TAG = "
|
|
539
|
+
NPM_TAG = "latest";
|
|
546
540
|
}
|
|
547
541
|
});
|
|
548
542
|
|
|
@@ -640,7 +634,7 @@
|
|
|
640
634
|
node = __toModule(require_require_utils());
|
|
641
635
|
init_assert2();
|
|
642
636
|
init_version();
|
|
643
|
-
LATEST = "
|
|
637
|
+
LATEST = "latest";
|
|
644
638
|
VERSION2 = typeof VERSION !== "undefined" ? VERSION : LATEST;
|
|
645
639
|
loadLibraryPromises = {};
|
|
646
640
|
}
|
|
@@ -8882,7 +8876,7 @@
|
|
|
8882
8876
|
var VERSION8;
|
|
8883
8877
|
var init_version5 = __esm({
|
|
8884
8878
|
"../textures/src/lib/utils/version.ts"() {
|
|
8885
|
-
VERSION8 = typeof __VERSION__ !== "undefined" ? __VERSION__ : "
|
|
8879
|
+
VERSION8 = typeof __VERSION__ !== "undefined" ? __VERSION__ : "latest";
|
|
8886
8880
|
}
|
|
8887
8881
|
});
|
|
8888
8882
|
|
|
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.VERSION = void 0;
|
|
7
|
-
var VERSION = typeof "3.2.
|
|
7
|
+
var VERSION = typeof "3.2.1" !== 'undefined' ? "3.2.1" : 'latest';
|
|
8
8
|
exports.VERSION = VERSION;
|
|
9
9
|
//# sourceMappingURL=version.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = typeof "3.2.
|
|
1
|
+
export const VERSION = typeof "3.2.1" !== 'undefined' ? "3.2.1" : 'latest';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/3d-tiles",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/dist.min.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@loaders.gl/draco": "3.2.
|
|
38
|
-
"@loaders.gl/gltf": "3.2.
|
|
39
|
-
"@loaders.gl/loader-utils": "3.2.
|
|
40
|
-
"@loaders.gl/math": "3.2.
|
|
41
|
-
"@loaders.gl/tiles": "3.2.
|
|
37
|
+
"@loaders.gl/draco": "3.2.1",
|
|
38
|
+
"@loaders.gl/gltf": "3.2.1",
|
|
39
|
+
"@loaders.gl/loader-utils": "3.2.1",
|
|
40
|
+
"@loaders.gl/math": "3.2.1",
|
|
41
|
+
"@loaders.gl/tiles": "3.2.1",
|
|
42
42
|
"@math.gl/core": "^3.5.1",
|
|
43
43
|
"@math.gl/geospatial": "^3.5.1"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@loaders.gl/core": "3.2.0
|
|
46
|
+
"@loaders.gl/core": "3.2.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "463753213a7de56060d879a70ca934d0165f5897"
|
|
49
49
|
}
|