Add newlines between concatted files in lib.d.ts

This commit is contained in:
Andy Hanson 2016-10-02 15:57:03 -07:00 committed by Andy Hanson
parent 7a1635f2f4
commit d4a7fac96e

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