fix(embark/generator): add empty line to embarkjs

This commit is contained in:
Jonathan Rainville 2019-04-19 10:59:31 -04:00
parent 1ae0ab6b1f
commit 6b16f668e0
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ class CodeGenerator {
code += "\nif (typeof module !== 'undefined' && module.exports) {" +
"\n\tmodule.exports = EmbarkJS;" +
"\n}";
code += '\n/* eslint-enable */';
code += '\n/* eslint-enable */\n';
next();
},