3.1.3 (2017-04-21)
3.1.2 (2016-05-31)
3.1.1 (2016-05-12)
3.1.0 (2016-03-14)
3.0.1 (2016-03-10)
3.0.0 (2016-03-04)
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)
2.1.0 (2016-01-16)
2.0.1 (2015-09-13)
- add Node 4.0.0 to CI (bebe1b8)
2.0.0 (2015-09-07)
scanBrowser
option is ignored since this release and treated asscanBrowser=true
at all times.
(6728e47c)
1.5.0 (2015-09-01)
1.4.0 (2015-08-03)
- add homepage field
- add "generated by" section to provide hint for tools such as uglifyjs (49fc88d9)
1.3.0 (2015-07-27)
- move main module to the top (d44c5e8d)
1.2.0 (2015-07-23)
- add version field (by @ahomu)
1.1.0 (2015-04-05)
- stream returned by
bundle
is readable-only since browserify 9.0.5 (5a26a22a)
- scanBrowser option to scan
browser
field (by @armorik83)
1.0.0 (2015-02-06)
switch to semver
0.2.0 (2014-12-14)
- licensify:
- add maintainers and contributors to header (525066e2)
0.1.0 (2014-12-03)
initial release