Skip to content

Commit 2866552

Browse files
author
Andy
authored
Merge pull request #11309 from Microsoft/concat_libs
Add newlines between concatted files in lib.d.ts
2 parents 7a1635f + d4a7fac commit 2866552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gulpfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ for (const i in libraryTargets) {
168168
gulp.task(target, false, [], function() {
169169
return gulp.src(sources)
170170
.pipe(newer(target))
171-
.pipe(concat(target, { newLine: "" }))
171+
.pipe(concat(target, { newLine: "\n\n" }))
172172
.pipe(gulp.dest("."));
173173
});
174174
}

0 commit comments

Comments
 (0)