Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yumyfung committed May 18, 2015
1 parent 540c297 commit 6077967
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
# gulp-next
gulp插件gulp-next
# gulp-next
## 安装
npm install --save-dev gulp-next
## 参数
callback: 接受一个回调函数作为参数
## 例子
`var gulp = require('gulp');`
`var next= require('gulp-next');`

`gulp.task('test', function () {`
`gulp.src('images/*.png')`
`.pipe(gulp.dest('path/output/'))`
`.pipe(next(function(){`
`console.log('success...');`
`}));`
`});`

0 comments on commit 6077967

Please sign in to comment.