-
-
Notifications
You must be signed in to change notification settings - Fork 200
Closed
Labels
Description
Currently, custom plugins are registered last. but this can cause issues:
- when using the copy-webpack-plugin (assuming plugins are releasing versions containing the support for manifest and copy together), you need to register it before the manifest plugin AFAIK (otherwise the manifest won't see the new entries)
- when using some plugins altering the JS code, you are likely to want them registered before the UglifyJS plugin, so that the final file is minified.
Other examples may come.
I don't know whether we should build a way to control the order precisely, or whether we should just change the position of custom plugins.