Skip to content

Releases: browserify/tinyify

v2.2.0

21 Oct 11:51
f75ff84
Compare
Choose a tag to compare

add a --no-flat option for use with other tools that expect browser-pack output, such as disc

v2.1.1

17 Oct 13:23
0170269
Compare
Choose a tag to compare

output ascii-only by default (89aaf79), see also choojs/bankai#277

v2.1.0

17 Oct 12:25
01106ae
Compare
Choose a tag to compare

Add env option for custom environment variables. (@yoshuawuyts in #2)

v2.0.0

17 Oct 12:00
42a447a
Compare
Choose a tag to compare

Update browser-pack-flat to v3.0.0. This fixes tinyify-ing entry points that assign exports, like what's common in choo apps:

// app.js
if (window) app.mount()
else module.exports = app

The breaking change is that browser-pack-flat bundles will no longer assign module.exports when not using --standalone. This should not be a problem in 99.999% of cases, and is the same as what browser-pack does.