Go to file
2016-12-13 23:01:25 +01:00
dist added typings, removed beautylog 2016-12-13 23:01:25 +01:00
test added typings, removed beautylog 2016-12-13 23:01:25 +01:00
ts added typings, removed beautylog 2016-12-13 23:01:25 +01:00
.gitignore added typings, removed beautylog 2016-12-13 23:01:25 +01:00
.gitlab-ci.yml fix gitlab ci 2016-07-26 18:30:39 +02:00
.npmignore cleanup 2016-02-09 17:06:26 +01:00
LICENSE Initial commit 2015-10-24 16:32:34 +02:00
npmts.json now running coverage 2016-02-09 16:39:36 +01:00
package.json added typings, removed beautylog 2016-12-13 23:01:25 +01:00
README.md fix README 2016-07-26 18:50:00 +02:00
tslint.json added typings, removed beautylog 2016-12-13 23:01:25 +01:00

gulp-browser

browserify and other goodies for gulp

Status

build status Dependency Status bitHound Dependencies bitHound Code codecov.io node

Usage

gulp-browser is meant to be easy:

Browserify:

    let gulp = require("gulp");
    let gulpBrowser = require("gulp-browser");
    
    let transforms = [
        {
            transform: "babelify",
            options: {presets: ["es2015"]}
        }
    ];
    
    gulp.task('gulpBrowserTest',function() {
        var stream = gulp.src('./test/*.js')
            .pipe(gulpBrowser.browserify(transforms)) // gulp.browserify() accepts an optional array of tansforms
            .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

Extending this module

If you have ideas for other great browser related gulp pipe stops, feel free to raise an issue on GitHub.

Contributors

About the maintainer:

Project Phase

PayPal