This package has been deprecated

Author message:

This package has been deprecated in favour of the new package at @push.rocks/gulp-browser

@pushrocks/gulp-browser
TypeScript icon, indicating that this package has built-in type declarations

3.0.19 • Public • Published

@pushrocks/gulp-browser

browserify and other goodies for gulp

Availabililty and Links

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

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.

Contributors

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer

Package Sidebar

Install

npm i @pushrocks/gulp-browser

Weekly Downloads

0

Version

3.0.19

License

MIT

Unpacked Size

13.3 kB

Total Files

13

Last publish

Collaborators

  • lossless