Skip to content

Commit

Permalink
Create gulpfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
justjavac committed Oct 29, 2015
1 parent afc2a8c commit a57ff06
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var gulp = require('gulp');
var markdown = require('gulp-markdown');

gulp.task('default', function () {
return gulp.src('README.md')
.pipe(markdown())
.pipe(gulp.dest('html'));
});

0 comments on commit a57ff06

Please sign in to comment.