Skip to content

Commit

Permalink
Add newline at end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Jan 17, 2019
1 parent d175dab commit c57b480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/modularize.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c57b480

Please sign in to comment.