Browse Source

only build three.js and three.min.js for npm module.

Ben Houston 10 years ago
parent
commit
70b6e13824
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/npm/build.js

+ 2 - 2
utils/npm/build.js

@@ -87,9 +87,9 @@ var buildModule = function ( name, version ) {
 var cmdExe, args;
 if (process.platform === 'win32' || process.platform === 'win64') {
 	cmdExe = "cmd.exe";
-	args = [ "/c", "build_all.bat" ];
+	args = [ "/c", "build.bat" ];
 } else {
-	cmdExe = './build_all.sh';
+	cmdExe = './build.sh';
 	args = [];
 }
 var opts = { "cwd": "../build" };