Skip to content

Commit

Permalink
gulp file editing with add copying CNAME
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaskazatel committed Dec 8, 2016
1 parent 1be7e31 commit 3ec49ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ gulp.task('build', function () {
gulp.src('./source/**/*.html', {base: 'source'})
.pipe(gulp.dest('./output'));

//copy CNAME
gulp.src('./source/CNAME')
.pipe(gulp.dest('./output'));

//copy images
gulp.src('./source/**/*.{ico,png,jpeg,jpg,gif}', {base: 'source'})
.pipe(gulp.dest('./output'));
Expand Down

0 comments on commit 3ec49ee

Please sign in to comment.