Go to file
2016-01-25 02:13:06 +01:00
test Integrated error reporting: closes #2 and closes #4 2015-12-05 22:29:06 +01:00
ts updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00
.gitignore updated dependencies 2015-12-06 22:07:18 +01:00
.npmignore updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00
.travis.yml update .travis.yml to use lossless 2016-01-25 00:56:04 +01:00
index.d.ts updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00
index.js updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00
LICENSE Initial commit 2015-10-24 16:32:34 +02:00
package.json update npm keywords 2016-01-25 02:13:06 +01:00
README.md improve readme 2015-12-05 22:51:38 +01:00
test.js updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00

gulp-browser

browserify and other goodies for gulp

Build Status/Dependencies

Build Status Dependency Status bitHound Dependencies bitHound Code

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;
    });

Note: Be aware of how gulp.src creates values of file.base and file.path since that is important to the require statements.

Dev Information:

devDependency Status bitHound Dev Dependencies