@loaders.gl/textures 4.4.0-alpha.13 → 4.4.0-alpha.15
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/basis-worker-node.js +432 -9762
- package/dist/basis-worker.js +2 -2
- package/dist/compressed-texture-worker.js +2 -2
- package/dist/crunch-worker.js +2 -2
- package/dist/dist.min.js +2 -2
- package/dist/index.cjs +1 -1
- package/dist/ktx2-basis-writer-worker-node.js +432 -9762
- package/dist/ktx2-basis-writer-worker.js +2 -2
- package/dist/lib/utils/version.js +1 -1
- package/dist/npy-loader.d.ts +2 -2
- package/dist/npy-worker.js +1 -1
- package/package.json +6 -6
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
globalThis._loadersgl_.version = NPM_TAG;
|
|
12
12
|
warningIssued = true;
|
|
13
13
|
} else {
|
|
14
|
-
globalThis._loadersgl_.version = "4.4.0-alpha.
|
|
14
|
+
globalThis._loadersgl_.version = "4.4.0-alpha.15";
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
return globalThis._loadersgl_.version;
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
// src/lib/utils/version.ts
|
|
280
|
-
var VERSION2 = true ? "4.4.0-alpha.
|
|
280
|
+
var VERSION2 = true ? "4.4.0-alpha.15" : "latest";
|
|
281
281
|
|
|
282
282
|
// src/lib/parsers/basis-module-loader.ts
|
|
283
283
|
var BASIS_EXTERNAL_LIBRARIES = {
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
// Version constant cannot be imported, it needs to correspond to the build version of **this** module.
|
|
5
5
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
6
6
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
7
|
-
export const VERSION = typeof "4.4.0-alpha.
|
|
7
|
+
export const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
|
|
8
8
|
//# sourceMappingURL=version.js.map
|
package/dist/npy-loader.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const NPYWorkerLoader: {
|
|
|
21
21
|
readonly worker: true;
|
|
22
22
|
readonly extensions: ["npy"];
|
|
23
23
|
readonly mimeTypes: [];
|
|
24
|
-
readonly tests: [
|
|
24
|
+
readonly tests: [ArrayBuffer];
|
|
25
25
|
readonly options: {
|
|
26
26
|
readonly npy: {};
|
|
27
27
|
};
|
|
@@ -41,7 +41,7 @@ export declare const NPYLoader: {
|
|
|
41
41
|
readonly worker: true;
|
|
42
42
|
readonly extensions: ["npy"];
|
|
43
43
|
readonly mimeTypes: [];
|
|
44
|
-
readonly tests: [
|
|
44
|
+
readonly tests: [ArrayBuffer];
|
|
45
45
|
readonly options: {
|
|
46
46
|
readonly npy: {};
|
|
47
47
|
};
|
package/dist/npy-worker.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/textures",
|
|
3
|
-
"version": "4.4.0-alpha.
|
|
3
|
+
"version": "4.4.0-alpha.15",
|
|
4
4
|
"description": "Framework-independent loaders for compressed and super compressed (basis) textures ",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"build-crunch-worker": "esbuild src/workers/crunch-worker.ts --outfile=dist/crunch-worker.js --target=esnext --bundle --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@loaders.gl/images": "4.4.0-alpha.
|
|
79
|
-
"@loaders.gl/loader-utils": "4.4.0-alpha.
|
|
80
|
-
"@loaders.gl/schema": "4.4.0-alpha.
|
|
81
|
-
"@loaders.gl/worker-utils": "4.4.0-alpha.
|
|
78
|
+
"@loaders.gl/images": "4.4.0-alpha.15",
|
|
79
|
+
"@loaders.gl/loader-utils": "4.4.0-alpha.15",
|
|
80
|
+
"@loaders.gl/schema": "4.4.0-alpha.15",
|
|
81
|
+
"@loaders.gl/worker-utils": "4.4.0-alpha.15",
|
|
82
82
|
"@math.gl/types": "^4.1.0",
|
|
83
83
|
"ktx-parse": "^0.7.0",
|
|
84
84
|
"texture-compressor": "^1.0.2"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"@loaders.gl/core": "4.4.0-alpha.1"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "d85491705e9943365790fb95da2e502cb2903ed7"
|
|
90
90
|
}
|