Merge pull request #11309 from Microsoft/concat_libs

Add newlines between concatted files in lib.d.ts
This commit is contained in:
Andy
2016-10-03 09:45:14 -07:00
committed by GitHub

View File

@@ -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("."));
});
}