diff --git a/bundler.js b/bundler.js index 11f0f98..b479d41 100644 --- a/bundler.js +++ b/bundler.js @@ -166,7 +166,7 @@ function bundle(entryfilepath, options = {}) { if (!(options.disablebeautify == true)) { bundled = beautify(bundled, { - indent_size: 4, + indent_with_tabs: true, end_with_newline: true, preserve_newlines: false }) @@ -174,5 +174,5 @@ function bundle(entryfilepath, options = {}) { return bundled } - +/ module.exports = { bundle: bundle }