bit-bundler-banner

1.1.0 • Public • Published

bit-bundler-banner

Greenkeeper badge

Add a banner to your bundles

Usage

install

$ npm install --save-dev bit-bundler-banner

config

Simple setup passing the string to be added to the bundle to the top.

var Bitbundler = require("bit-bundler");
 
var bitbundler = new Bitbundler({
  bundler: [
    ["bit-bundler-banner", "/*! bit-bundler-banner. Miguel Castillo. Licensed under MIT */"]
  ]
});

You can altenatively pass a function that returns a string to be used as the banner string.

var Bitbundler = require("bit-bundler");
 
var bitbundler = new Bitbundler({
  bundler: [
    ["bit-bundler-banner", (bundle) => `/*! bit-bundler-banner ${bundle.name}. Miguel Castillo. Licensed under MIT */`]
  ]
});

Readme

Keywords

Package Sidebar

Install

npm i bit-bundler-banner

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • manchagnu