Go to file
Philipp Kunz 1644c3541d 0.0.12
2015-11-13 19:24:33 +01:00
.idea updated deps 2015-11-13 19:24:25 +01:00
test updated deps 2015-11-13 19:24:25 +01:00
ts added log message 2015-10-26 23:38:29 +01:00
.gitignore cleanup 2015-10-27 16:48:24 +01:00
.travis.yml speed up travis 2015-10-26 23:33:10 +01:00
index.js now successfully browfserifying 2015-10-26 23:27:33 +01:00
LICENSE Initial commit 2015-10-24 16:32:34 +02:00
package.json 0.0.12 2015-11-13 19:24:33 +01:00
README.md cleanup 2015-10-27 16:55:44 +01:00
test.js added log message 2015-10-26 23:38:29 +01:00

gulp-browser

browserify and other goodies for gulp

Build Status/Dependencies

Build Status Dependency Status devDependency Status

Usage

gulp-browser is meant to be easy:

Browserify:

    var gulp = require("gulp");
    var gulpBrowser = require("gulp-browser");
    
    gulp.task('gulpBrowserTest',function() {
        var stream = gulp.src('./test/*.js')
            .pipe(gulpBrowser.browserify())
            .pipe(gulp.dest("./test/browserifiedJS/"));
        return stream;
    });