Skip to content

Commit

Permalink
Include dotfiles when copying the site
Browse files Browse the repository at this point in the history
Part one of fixing issue #141.
  • Loading branch information
sondr3 committed Jul 28, 2016
1 parent f97dec6 commit 5b43248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/jekyll/templates/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const argv = require('yargs').argv;
// 'gulp jekyll:tmp' -- copies your Jekyll site to a temporary directory
// to be processed
gulp.task('site:tmp', () =>
gulp.src(['src/**/*', '!src/assets/**/*', '!src/assets'])
gulp.src(['src/**/*', '!src/assets/**/*', '!src/assets'], {dot: true})
.pipe(gulp.dest('.tmp/src'))
.pipe(size({title: 'Jekyll'}))
);
Expand Down

0 comments on commit 5b43248

Please sign in to comment.