Socket
Socket
Sign inDemoInstall

gulp-bandolero

Package Overview
Dependencies
75
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-bandolero

Gulp plugin for making single-file UMD bundles from ES6-style modules


Version published
Maintainers
1
Install size
2.37 MB
Created

Readme

Source

Gulp-bandolero.js

gulp-bandolero is deprecated after esperanto. Please consider using another module like gulp-rollup for bundling your modules

Another gulp plugin for resolving dependencies.

This one is just wrap around esperanto.

The idea is pretty simple: you write your modules using cool ECMAScript6 module syntax straight from the future, this little guy right there compiles it all to a single file module compatible with both CommonJS and AMD.

Like so:

var gulp   = require('gulp'),
    bundle = require('gulp-bandolero');

gulp.task('js:build', function () {
    gulp.src('src/index.js')
        .pipe(bundle({name: 'steve'}))
        .pipe(gulp.dest('dst/'));
});

That's typeof it :smirk:

Keywords

FAQs

Last updated on 04 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc