瀏覽代碼

Renamed three.modules.js to three.module.js. See #10347.

Mr.doob 8 年之前
父節點
當前提交
d57c586695
共有 3 個文件被更改,包括 4 次插入4 次删除
  1. 0 0
      build/three.module.js
  2. 3 3
      package.json
  3. 1 1
      rollup.config.js

+ 0 - 0
build/three.modules.js → build/three.module.js


+ 3 - 3
package.json

@@ -4,15 +4,15 @@
   "description": "JavaScript 3D library",
   "description": "JavaScript 3D library",
   "main": "build/three.js",
   "main": "build/three.js",
   "repository": "mrdoob/three.js",
   "repository": "mrdoob/three.js",
-  "jsnext:main": "build/three.modules.js",
-  "module": "build/three.modules.js",
+  "jsnext:main": "build/three.module.js",
+  "module": "build/three.module.js",
   "files": [
   "files": [
     "package.json",
     "package.json",
     "LICENSE",
     "LICENSE",
     "README.md",
     "README.md",
     "build/three.js",
     "build/three.js",
     "build/three.min.js",
     "build/three.min.js",
-    "build/three.modules.js",
+    "build/three.module.js",
     "src",
     "src",
     "examples/js",
     "examples/js",
     "examples/fonts",
     "examples/fonts",

+ 1 - 1
rollup.config.js

@@ -31,7 +31,7 @@ export default {
 		},
 		},
 		{
 		{
 			format: 'es',
 			format: 'es',
-			dest: 'build/three.modules.js'
+			dest: 'build/three.module.js'
 		}
 		}
 	]
 	]
 };
 };