Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Mar 15, 2015
1 parent c1e7fce commit 8412934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
gitdown: {
src: '.gitdown/README.md',
dest: 'README.md',
glob: '.gitdown/*.md'
glob: '.gitdown/**/*.md'
}
},
banner: banner
Expand Down
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ gulp.task('version', fizzy.task('version', {
}));

// release a new version
gulp.task('release', ['version', 'build']);
gulp.task('release', ['version'], function () {
gulp.run('build');
});

// Watch for changes
gulp.task('watch', function () {
Expand Down

0 comments on commit 8412934

Please sign in to comment.