@loaders.gl/loader-utils 4.4.0-alpha.11 → 4.4.0-alpha.12
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/index.cjs +2 -2
- package/dist/json-loader.js +1 -1
- package/dist/lib/log-utils/log.js +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -157,7 +157,7 @@ var nodeVersion = matches && parseFloat(matches[1]) || 0;
|
|
|
157
157
|
|
|
158
158
|
// dist/lib/log-utils/log.js
|
|
159
159
|
var import_log = require("@probe.gl/log");
|
|
160
|
-
var VERSION = true ? "4.4.0-alpha.
|
|
160
|
+
var VERSION = true ? "4.4.0-alpha.12" : "latest";
|
|
161
161
|
var version = VERSION[0] >= "0" && VERSION[0] <= "9" ? `v${VERSION}` : "";
|
|
162
162
|
function createLog() {
|
|
163
163
|
const log2 = new import_log.Log({ id: "loaders.gl" });
|
|
@@ -836,7 +836,7 @@ function resolvePath(filename2) {
|
|
|
836
836
|
}
|
|
837
837
|
|
|
838
838
|
// dist/json-loader.js
|
|
839
|
-
var VERSION2 = true ? "4.4.0-alpha.
|
|
839
|
+
var VERSION2 = true ? "4.4.0-alpha.12" : "latest";
|
|
840
840
|
var JSONLoader = {
|
|
841
841
|
dataType: null,
|
|
842
842
|
batchType: null,
|
package/dist/json-loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
2
2
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
3
|
-
const VERSION = typeof "4.4.0-alpha.
|
|
3
|
+
const VERSION = typeof "4.4.0-alpha.12" !== 'undefined' ? "4.4.0-alpha.12" : 'latest';
|
|
4
4
|
/**
|
|
5
5
|
* A JSON Micro loader (minimal bundle size)
|
|
6
6
|
* Alternative to `@loaders.gl/json`
|
|
@@ -5,7 +5,7 @@ import { Log } from '@probe.gl/log';
|
|
|
5
5
|
// Version constant cannot be imported, it needs to correspond to the build version of **this** module.
|
|
6
6
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
7
7
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
8
|
-
export const VERSION = typeof "4.4.0-alpha.
|
|
8
|
+
export const VERSION = typeof "4.4.0-alpha.12" !== 'undefined' ? "4.4.0-alpha.12" : 'latest';
|
|
9
9
|
const version = VERSION[0] >= '0' && VERSION[0] <= '9' ? `v${VERSION}` : '';
|
|
10
10
|
// Make sure we set the global variable
|
|
11
11
|
function createLog() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/loader-utils",
|
|
3
|
-
"version": "4.4.0-alpha.
|
|
3
|
+
"version": "4.4.0-alpha.12",
|
|
4
4
|
"description": "Framework-independent loaders for 3D graphics formats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"stream": false
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@loaders.gl/schema": "4.4.0-alpha.
|
|
49
|
-
"@loaders.gl/worker-utils": "4.4.0-alpha.
|
|
48
|
+
"@loaders.gl/schema": "4.4.0-alpha.12",
|
|
49
|
+
"@loaders.gl/worker-utils": "4.4.0-alpha.12",
|
|
50
50
|
"@probe.gl/log": "^4.0.2",
|
|
51
51
|
"@probe.gl/stats": "^4.0.2"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "35205e786cbbcf4bd91b74abe210f6c8e378b4cf"
|
|
54
54
|
}
|