Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-bandolero

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 0.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 04 Nov 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc