Releases: xipasduarte/no-emit-webpack-plugin
v4.0.1
Improvements and fixes:
- Adds a more realistic scenario of testing in combination with Mini CSS Extract Plugin.
- Fixes edge case with webpack 5, that was not documented as possible, where by passing
[]
you could have the plugin do nothing, while still being included in your config. - Replaces documentation example with one using Mini CSS Extract Plugin.
v4.0.0
v3.0.0
Improvements and fixes:
- Adds tests for the current functionality.
- Upgrade
schema-utils
to version3.0.0
. - Adds validations for invalid file names and warning when file is missing.
This release is meant to improve things for Webpack 4 for those that might still be using it. If you're using Webpack 5 then use [email protected]
.
Check for Map
Handle Map compilation.entrypoints
by checking the type and using the appropriate [type].keys()
function.
Thanks to @burnedram for contributing these changes.
Add support for Webpack 4
This release adds support for Webpack 4, which has a different API for plugins.
Thanks to @liorgreenb for contributing this changes.
First version
This is the first release for this Webpack plugin. It allows for, as the name says, preventing a file from being emitted, which in Webpack means that it won't be created, as part of the build process.
A use case can be found on the README file, along with some usage instruction.