1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00
echo/website/gulpfile.js
Vishal Rana 1a124f8aab Updated website
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-04-25 16:10:28 -07:00

11 lines
268 B
JavaScript

var gulp = require('gulp');
var shell = require('gulp-shell');
var ghPages = require('gulp-gh-pages');
gulp.task('build', shell.task('mkdocs build --clean'))
gulp.task('deploy',['build'], function() {
return gulp.src('./site/**/*')
.pipe(ghPages());
});