From d4a7fac96e0eeb10ed26488a6a763ab406367e13 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Sun, 2 Oct 2016 15:57:03 -0700 Subject: [PATCH] Add newlines between concatted files in lib.d.ts --- Gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index b2737c243c2..bea8eb30de8 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -168,7 +168,7 @@ for (const i in libraryTargets) { gulp.task(target, false, [], function() { return gulp.src(sources) .pipe(newer(target)) - .pipe(concat(target, { newLine: "" })) + .pipe(concat(target, { newLine: "\n\n" })) .pipe(gulp.dest(".")); }); }