2
0
Mr.doob 11 жил өмнө
parent
commit
7d5795121b

+ 1 - 1
utils/build/build.js

@@ -68,7 +68,7 @@ function main() {
 
 
 		var result = uglify.minify( sources, { outSourceMap: sourcemap } );
 		var result = uglify.minify( sources, { outSourceMap: sourcemap } );
 		
 		
-		fs.writeFileSync( output, 'three.js - http://github.com/mrdoob/three.js\n// Released under the MIT license.\n// https://github.com/mrdoob/three.js/blob/master/LICENSE\n' + result.code + sourcemapping, 'utf8' );
+		fs.writeFileSync( output, 'three.js / threejs.org/license\n' + result.code + sourcemapping, 'utf8' );
 
 
 		if ( args.sourcemaps ) {
 		if ( args.sourcemaps ) {
 
 

+ 1 - 1
utils/build/build.py

@@ -79,7 +79,7 @@ def main(argv=None):
 		# header
 		# header
 
 
 		with open(output,'r') as f: text = f.read()
 		with open(output,'r') as f: text = f.read()
-		with open(output,'w') as f: f.write('// three.js - http://github.com/mrdoob/three.js\n// Released under the MIT license.\n// https://github.com/mrdoob/three.js/blob/master/LICENSE\n' + text + sourcemapping)
+		with open(output,'w') as f: f.write('// three.js / threejs.org/license\n' + text + sourcemapping)
 
 
 	os.close(fd)
 	os.close(fd)
 	os.remove(path)
 	os.remove(path)