Open vwochnik opened 7 years ago
This plugin invokes prepack using the transform() method. But it shouldn't be this way. It should be transformBundle() because prepack should be invoked after rollup has created the bundle.
prepack
transform()
transformBundle()
rollup
Look here for how it's done for the uglify plugin.
uglify
yea, I was thinking that too..
This plugin invokes
prepack
using thetransform()
method. But it shouldn't be this way. It should betransformBundle()
becauseprepack
should be invoked afterrollup
has created the bundle.Look here for how it's done for the
uglify
plugin.