diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 5f135d2..2640b4a 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,8 +2,8 @@ + - @@ -78,7 +78,7 @@ - + @@ -116,8 +116,8 @@ - - + + @@ -131,7 +131,6 @@ @@ -243,24 +243,6 @@ - - - - - - - - @@ -503,14 +477,6 @@ - - - - - - - - @@ -535,10 +501,18 @@ + + + + + + + + - + diff --git a/README.md b/README.md index 876cc38..f24cf16 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,10 @@ gulp-browser is meant to be easy: var gulp = require("gulp"); var gulpBrowser = require("gulp-browser"); - gulp.task('gulpBrowserTest',function(cb) { - gulp.src('./test/*.js') + gulp.task('gulpBrowserTest',function() { + var stream = gulp.src('./test/*.js') .pipe(gulpBrowser.browserify()) - .pipe(gulp.dest("./test/browserifiedJS/")) + .pipe(gulp.dest("./test/browserifiedJS/")); + return stream; }); ``` \ No newline at end of file