Skip to content

Commit

Permalink
add gulp task to deploy [2]
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Oct 21, 2014
1 parent b374365 commit b7f62ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ gulp.task('watch', function() {
gulp.watch('./lib/*.styl', ['css', browserSync.reload]);
});

gulp.task('deploy', function () {
gulp.src('./docs/**/*')
.pipe(deploy(options));
});

gulp.task('bundle', shell.task([
'gulp webpack',
'gulp webpack -p',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"devDependencies": {
"browser-sync": "^1.5.2",
"gulp": "^3.8.6",
"gulp-gh-pages": "^0.4.0",
"gulp-header": "^1.2.1",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
Expand Down

0 comments on commit b7f62ff

Please sign in to comment.