I\'m using Webpack with the extract-text-webpack-plugin.
In my project, I have some build scripts. One of the build scripts is supposed to bundle and minify CSS only. As
You can clean up your dist folder for any unwanted assets after the done is triggered. This can be easily achieved with the event-hooks-webpack-plugin
dist
done
// plugins: [ new EventHooksPlugin({ 'done': () => { // delete unwanted assets } }) ]
Good Luck...