Skip to content

Commit 929929b

Browse files
authored
Merge pull request #16862 from Mugen87/dev34
JSM: Use "module" instead of "min" prefix for libs.
2 parents ecc7845 + 04796a3 commit 929929b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.

examples/jsm/loaders/FBXLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import {
6363
VectorKeyframeTrack,
6464
VertexColors
6565
} from "../../../build/three.module.js";
66-
import { Zlib } from "../libs/inflate.min.js";
66+
import { Zlib } from "../libs/inflate.module.js";
6767
import { TGALoader } from "../loaders/TGALoader.js";
6868
import { NURBSCurve } from "../curves/NURBSCurve.js";
6969

examples/jsm/loaders/NRRDLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
Matrix4,
99
Vector3
1010
} from "../../../build/three.module.js";
11-
import { Zlib } from "../libs/gunzip.min.js";
11+
import { Zlib } from "../libs/gunzip.module.js";
1212
import { Volume } from "../misc/Volume.js";
1313

1414
var NRRDLoader = function ( manager ) {

examples/jsm/loaders/VTKLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
Float32BufferAttribute,
1919
LoaderUtils
2020
} from "../../../build/three.module.js";
21-
import { Zlib } from "../libs/inflate.min.js";
21+
import { Zlib } from "../libs/inflate.module.js";
2222

2323
var VTKLoader = function ( manager ) {
2424

utils/modularize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var files = [
8888
{ path: 'loaders/DRACOLoader.js', dependencies: [], ignoreList: [ 'LoadingManager' ] },
8989
{ path: 'loaders/EXRLoader.js', dependencies: [], ignoreList: [] },
9090
{ path: 'loaders/EquirectangularToCubeGenerator.js', dependencies: [], ignoreList: [] },
91-
{ path: 'loaders/FBXLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.min.js' }, { name: 'TGALoader', path: 'loaders/TGALoader.js' }, { name: 'NURBSCurve', path: 'curves/NURBSCurve.js' } ], ignoreList: [] },
91+
{ path: 'loaders/FBXLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.module.js' }, { name: 'TGALoader', path: 'loaders/TGALoader.js' }, { name: 'NURBSCurve', path: 'curves/NURBSCurve.js' } ], ignoreList: [] },
9292
{ path: 'loaders/GCodeLoader.js', dependencies: [], ignoreList: [] },
9393
{ path: 'loaders/GLTFLoader.js', dependencies: [], ignoreList: [ 'NoSide', 'Matrix2', 'DDSLoader', 'Camera' ] },
9494
{ path: 'loaders/HDRCubeTextureLoader.js', dependencies: [ { name: 'RGBELoader', path: 'loaders/RGBELoader.js' } ], ignoreList: [] },
@@ -99,7 +99,7 @@ var files = [
9999
{ path: 'loaders/MD2Loader.js', dependencies: [], ignoreList: [] },
100100
{ path: 'loaders/MMDLoader.js', dependencies: [ { name: 'TGALoader', path: 'loaders/TGALoader.js' }, { name: 'MMDParser', path: 'libs/mmdparser.module.js' } ], ignoreList: [ 'Camera', 'LoadingManager' ] },
101101
{ path: 'loaders/MTLLoader.js', dependencies: [], ignoreList: [ 'BackSide', 'DoubleSide', 'ClampToEdgeWrapping', 'MirroredRepeatWrapping' ] },
102-
{ path: 'loaders/NRRDLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/gunzip.min.js' }, { name: 'Volume', path: 'misc/Volume.js' } ], ignoreList: [] },
102+
{ path: 'loaders/NRRDLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/gunzip.module.js' }, { name: 'Volume', path: 'misc/Volume.js' } ], ignoreList: [] },
103103
{ path: 'loaders/OBJLoader.js', dependencies: [], ignoreList: [] },
104104
{ path: 'loaders/PCDLoader.js', dependencies: [], ignoreList: [] },
105105
{ path: 'loaders/PDBLoader.js', dependencies: [], ignoreList: [] },
@@ -115,7 +115,7 @@ var files = [
115115
{ path: 'loaders/TTFLoader.js', dependencies: [], ignoreList: [ 'Font' ] },
116116
{ path: 'loaders/VRMLLoader.js', dependencies: [], ignoreList: [] },
117117
{ path: 'loaders/VRMLoader.js', dependencies: [ { name: 'GLTFLoader', path: 'loaders/GLTFLoader.js' } ], ignoreList: [] },
118-
{ path: 'loaders/VTKLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.min.js' } ], ignoreList: [] },
118+
{ path: 'loaders/VTKLoader.js', dependencies: [ { name: 'Zlib', path: 'libs/inflate.module.js' } ], ignoreList: [] },
119119
{ path: 'loaders/XLoader.js', dependencies: [], ignoreList: [] },
120120

121121
{ path: 'math/ColorConverter.js', dependencies: [], ignoreList: [] },

0 commit comments

Comments
 (0)