Skip to content

Releases: xipasduarte/no-emit-webpack-plugin

v4.0.1

03 Jan 03:12
Compare
Choose a tag to compare

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

03 Jan 00:56
Compare
Choose a tag to compare

Improvements and fixes:

  • Adds support for Webpack 5.
  • Moves minimum node version to that of Webpack's, 10.13.0.

Note: If you're still using Webpack 4, use version 3.0.0.

v3.0.0

03 Jan 00:53
Compare
Choose a tag to compare

Improvements and fixes:

  • Adds tests for the current functionality.
  • Upgrade schema-utils to version 3.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 no-emit-webpack-plugin@4.0.0.

Check for Map

16 Apr 22:50
Compare
Choose a tag to compare

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

22 Nov 01:29
Compare
Choose a tag to compare

This release adds support for Webpack 4, which has a different API for plugins.

Thanks to @liorgreenb for contributing this changes.

First version

22 Nov 01:34
Compare
Choose a tag to compare

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.