Skip to content

Commit d191c26

Browse files
committed
Merge pull request gulpjs#608 from megakote/patch-3
Fixed recipes for new browserify/watchify
2 parents 1bf9abc + 917a965 commit d191c26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/fast-browserify-builds-with-watchify.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var source = require('vinyl-source-stream');
2222
var watchify = require('watchify');
2323

2424
gulp.task('watch', function() {
25-
var bundler = watchify('./src/index.js');
25+
var bundler = watchify(browserify('./src/index.js', watchify.args));
2626

2727
// Optionally, you can apply transforms
2828
// and other configuration options on the

0 commit comments

Comments
 (0)