Skip to content

Commit 4d653b7

Browse files
committed
bugfix: gulpfile.js
1 parent b7f62ff commit 4d653b7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

33
var gulp = require('gulp'),
4+
deploy = require('gulp-gh-pages'),
45
gutil = require('gulp-util'),
56
shell = require('gulp-shell'),
67
stylus = require('gulp-stylus'),
@@ -68,7 +69,7 @@ gulp.task('watch', function() {
6869

6970
gulp.task('deploy', function () {
7071
gulp.src('./docs/**/*')
71-
.pipe(deploy(options));
72+
.pipe(deploy());
7273
});
7374

7475
gulp.task('bundle', shell.task([

0 commit comments

Comments
 (0)