Skip to content

v0.4.1

Choose a tag to compare

@goto-bus-stop goto-bus-stop released this 04 Oct 08:03
· 54 commits to main since this release
52c32b6
  • Fix eliminating the first of a chain of AssignmentExpressions (77c58d5)

    This was causing input like
    exports.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)