Releases: webpack-contrib/stylelint-webpack-plugin
Releases · webpack-contrib/stylelint-webpack-plugin
v1.0.0
Bug Fixes
- Handle compilation.fileTimestamps for webpack 4
- DeprecationWarning: Tapable.plugin is deprecated. Use new API on
.hooks
instead
- Update option
emitError
- Update option
failOnError
Features
- Modernize project to latest defaults
- Validate options
- Support absolute paths in files array
- New option
stylelintPath
- New option
emitWarning
- New option
failOnWarning
- New option
quiet
⚠ BREAKING CHANGES
- Drop support for Node < 8.9.0
- Minimum supported
webpack
version is 4
- Minimum supported
stylelint
version is 9
v0.10.5
Bugfix
- fixes #153, webpack peerDep regression (#154)
v0.10.3
Bug Fixes
- package: update micromatch to version 3.1.8 (#134) (5251c9c)
v0.10.2
Bug Fixes
- remove duplicate error/warning logging (#130) (a15e54c)
v0.10.1
Bug Fixes
- lintDirtyModulesOnly matching path on Windows (#124) (3688d08)
v0.10.0
Bug Fixes
- package: update ramda to version 0.25.0 (#117) (6e5b69e)
Features
- support webpack/webpack-dev-server from hard-failing on error messages (#112) (24b581b), closes #103
v0.9.0
Features
BREAKING CHANGES
- package: stylelint is no longer implicitly installed to avoid dedupe conflicts (see #106)
v0.8.0
Features
- output errors in error constructor (#104) (07d57d6)
- this makes stylelint-webpack-plugin friendlier with friendly-errors-webpack-plugin and closer to the standard that other linting plugins (e.g babel, eslint) are moving towards. Thanks @crash7!