diff --git a/packages/example/gulpfile.js b/packages/example/gulpfile.js index 97b4b03ec1..a602adb89d 100644 --- a/packages/example/gulpfile.js +++ b/packages/example/gulpfile.js @@ -1,5 +1,5 @@ let gulp = require('gulp') -let ghPages = require('gulp-gh-pages') +let ghPages = require('gulp-gh-pages-will') let clean = require('gulp-clean') let RevAll = require('gulp-rev-all') let runSequence = require('run-sequence') @@ -13,28 +13,28 @@ gulp.task('assets', function () { }) return gulp.src('./app/**/*') - .pipe(revAll.revision()) - .pipe(gulp.dest('build')) + .pipe(revAll.revision()) + .pipe(gulp.dest('build')) }) gulp.task('cname', function () { return gulp.src('CNAME') - .pipe(gulp.dest('build')) + .pipe(gulp.dest('build')) }) gulp.task('gitignore', function () { return gulp.src('.gitignore') - .pipe(gulp.dest('build')) + .pipe(gulp.dest('build')) }) gulp.task('clean', function () { return gulp.src('./build') - .pipe(clean()) + .pipe(clean()) }) gulp.task('push-gh-pages', function () { return gulp.src('build/**/*') - .pipe(ghPages()) + .pipe(ghPages()) }) gulp.task('build', function (cb) { diff --git a/packages/example/package.json b/packages/example/package.json index e965c8ca80..8b4d2587f7 100644 --- a/packages/example/package.json +++ b/packages/example/package.json @@ -29,7 +29,7 @@ "cypress-example-kitchensink": "1.0.1", "gulp": "^3.9.1", "gulp-clean": "^0.3.1", - "gulp-gh-pages": "^0.5.4", + "gulp-gh-pages-will": "0.5.5", "gulp-rev-all": "^0.8.22", "mocha": "^2.4.5", "run-sequence": "^1.1.5",