Explorar o código

Add newline at end of file

Garrett Johnson %!s(int64=6) %!d(string=hai) anos
pai
achega
c57b480e7b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      utils/modularize.js

+ 1 - 1
utils/modularize.js

@@ -83,7 +83,7 @@ function convert( path, ignoreList ) {
 
 	var keys = Object.keys( dependencies ).sort().map( value => '\n\t' + value ).toString();
 	var imports = `import {${keys}\n} from "../../../build/three.module.js";`;
-	var exports = `export { ${className} };`;
+	var exports = `export { ${className} };\n`;
 
 	var output = contents.replace( '_IMPORTS_', imports ) + '\n' + exports;