I've integrated Webpack into my project alongside the extract-text-webpack-plugin.
Within my project, I have various build scripts. One of these scripts focuses solely on bundling and minifying CSS. While utilizing Webpack for other tasks, I decided to leverage its capabilities in bundling and minifying CSS as well.
The process is functioning correctly, except for one issue - I can't seem to eliminate the output.js
file that is generated. My aim is to obtain only the bundled and minified CSS without any accompanying JS output.
Is there a method to remove the resulting JS file? If not, do you have any recommendations for alternative tools specifically tailored for handling CSS? Thank you.