indutny / webpack-common-shake

CommonJS Tree Shaker plugin for WebPack
918 stars 13 forks source link

Do not print warning on `module.exports` assignment #5

Closed indutny closed 7 years ago

indutny commented 7 years ago

module.exports = ... is very common. Do not print warning on this, or at least support code like:

module.exports = fn;
module.exports = { ... };

Without any other member assignments to exports.

indutny commented 7 years ago

module.exports assignment is turned into info-level warning. Closing this issue to open module.exports = { ... } support request separately.