Skip to content

Commit 2515732

Browse files
committed
Copy README and LICENSE
1 parent 8482fed commit 2515732

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

gulpfile.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ gulp.task('inline-templates', ['clean-tmp'], function () {
1616
});
1717

1818
gulp.task('clean-tmp', function () {
19-
return gulp.src(tmpDir, {read: false})
19+
return gulp.src(tmpDir, { read: false })
2020
.pipe(clean());
2121
});
2222

2323
gulp.task('clean-dist', function () {
24-
return gulp.src(distDir, {read: false})
24+
return gulp.src(distDir, { read: false })
2525
.pipe(clean());
2626
});
2727

@@ -30,4 +30,9 @@ gulp.task('copy-package-json', function () {
3030
.pipe(gulp.dest(distDir));
3131
});
3232

33-
gulp.task('copy-all', ['copy-package-json']);
33+
gulp.task('copy-misc-files', function () {
34+
return gulp.src(['README.MD', 'LICENSE'])
35+
.pipe(gulp.dest(distDir));
36+
});
37+
38+
gulp.task('copy-all', ['copy-package-json', 'copy-misc-files']);

0 commit comments

Comments
 (0)