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)