Skip to content
This repository has been archived by the owner on Feb 19, 2018. It is now read-only.

Commit

Permalink
Always upload dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Jul 28, 2016
1 parent 9ccf019 commit 541f8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/gulp/templates/tasks/uploading.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gulp.task('upload', () => {
'Cache-Control': 'max-age=315360000, no-transform, public'
};

return gulp.src('dist/**/*')
return gulp.src('dist/**/*', {dot: true})
.pipe(awspublish.gzip())
.pipe(parallelize(publisher.publish(headers), 30))
.pipe(publisher.cache())
Expand Down Expand Up @@ -47,7 +47,7 @@ const ghpages = require('gulp-gh-pages');

// 'gulp deploy' -- pushes your dist folder to Github
gulp.task('upload', () => {
return gulp.src('dist/**/*')
return gulp.src('dist/**/*', {dot: true})
.pipe($.ghPages());
});
<% } -%>
Expand Down

0 comments on commit 541f8bc

Please sign in to comment.