1.1.1 • Published 6 years ago

@bit/bundler-banner v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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 */`]
  ]
});