-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
Rollup is a relatively new module bundler (es6) that can generate UMD style output. Unfortunately the code is not recognized by AMDclean.
It goes like this (after Require Optimizer):
(function(global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.Vue = factory());
})(this, (function() {
return true;
}))
amdclean only recognizes if the conditions are put into if-else.
Metadata
Metadata
Assignees
Labels
No labels