Skip to content

Releases: browserify/common-shakeify

v0.1.1

21 Aug 10:52
a28bd68

Choose a tag to compare

For example, previously code like this:

exports.
/* comment */
version = 'xyz';

Would be removed like this:

/* common-shake removed: exports.
/* comment */
version = */ void 'xyz';

Note how the inner comment ends the comment added by common-shakeify. Now in v0.1.1, the inner comment is escaped:

/* common-shake removed: exports.
/* comment *\/
version = */ void 'xyz';