Skip to content

Commit

Permalink
Fixed recipes for new browserify/watchify
Browse files Browse the repository at this point in the history
  • Loading branch information
megakote committed Jul 29, 2014
1 parent e74b89b commit 917a965
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions docs/recipes/fast-browserify-builds-with-watchify.md
Expand Up @@ -22,11 +22,7 @@ var source = require('vinyl-source-stream');
var watchify = require('watchify');

gulp.task('watch', function() {
var bundler = watchify(browserify('./src/index.js', {
cache: {},
packageCache: {},
fullPaths: true
}));
var bundler = watchify(browserify('./src/index.js', watchify.args));

// Optionally, you can apply transforms
// and other configuration options on the
Expand Down

0 comments on commit 917a965

Please sign in to comment.