Releases: browserify/common-shakeify
Releases · browserify/common-shakeify
v0.4.5
v0.4.4
Fix resolution of exposed --require
modules:
browserify app.js -p common-shakeify -r ./some/other/module.js:xyz
should now work correctly.
v0.4.3
- set
ecmaVersion: 9
in acorn options, to support new syntax features like async functions - fix deleting arrow function exports
- fix source path for verbose 'imported library call' warnings
v0.4.2
v0.4.1
-
Fix eliminating the first of a chain of AssignmentExpressions (77c58d5)
This was causing input likeexports.decode = exports.parse = require('./decode');
where
decode
is unused, to produce/* common-shake removed: exports.decode = */ void exports.parse = require('./decode');
but
void exports.parse
can't be assigned to. -
Fix common-shakeify not running on rebuilds with watchify (7005ab6)