Skip to content

Latest commit

 

History

History
174 lines (74 loc) · 5.04 KB

CHANGELOG.md

File metadata and controls

174 lines (74 loc) · 5.04 KB

3.1.3 (2017-04-21)

Bug Fixes

3.1.2 (2016-05-31)

Bug Fixes

3.1.1 (2016-05-12)

Bug Fixes

3.1.0 (2016-03-14)

Features

3.0.1 (2016-03-10)

Bug Fixes

3.0.0 (2016-03-04)

Features

Breaking Changes

Since 3.0.0, licensify ignores packages which are marked as private in package.json by default. To include private packages as before, please use includePrivate option. When includePrivate option is truthy, licensify includes private packages.

CLI usage:

$ $(npm bin)/browserify path/to/your/file.js -p [ licensify --includePrivate ] > build/bundle.js 

API usage:

var browserify = require('browserify');
var licensify = require('licensify');

var b = browserify();
b.add('/path/to/your/file');
b.plugin(licensify, { includePrivate: true });
b.bundle().pipe(dest)

2.2.0 (2016-02-01)

Features

2.1.0 (2016-01-16)

Features

2.0.1 (2015-09-13)

2.0.0 (2015-09-07)

Features

Breaking Changes

  • scanBrowser option is ignored since this release and treated as scanBrowser=true at all times.

(6728e47c)

1.5.0 (2015-09-01)

Features

1.4.0 (2015-08-03)

Features

1.3.0 (2015-07-27)

Features

  • move main module to the top (d44c5e8d)

1.2.0 (2015-07-23)

Features

1.1.0 (2015-04-05)

Bug Fixes

  • stream returned by bundle is readable-only since browserify 9.0.5 (5a26a22a)

Features

1.0.0 (2015-02-06)

switch to semver

0.2.0 (2014-12-14)

Features

  • licensify:
    • add maintainers and contributors to header (525066e2)

0.1.0 (2014-12-03)

initial release