From 15c396b6868da897ceac8ddeba147e85363be119 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Fri, 19 Jul 2013 10:08:10 -0700 Subject: [PATCH] linker: Add a few newlines before the exports section. --- tools/linker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/linker.js b/tools/linker.js index e4714ff6a6..7299c6ba3c 100644 --- a/tools/linker.js +++ b/tools/linker.js @@ -791,7 +791,7 @@ var getFooter = function (options) { var chunks = []; if (options.name && options.exports && !_.isEmpty(options.exports)) { - chunks.push("/* Exports */\n"); + chunks.push("\n\n/* Exports */\n"); chunks.push("if (typeof Package === 'undefined') Package = {};\n"); chunks.push(packageDot(options.name), " = ");