Releases: pluswerk/webpack-config
Releases · pluswerk/webpack-config
Version 1.5.0 Feature faster stylelint
Updated dependencies
Stylelint now supports lintDirtyModules, so only changed scss gets linted which provides a performance boost.
Version 1.4.0 make publicPath configurable
✨ add publicPath option so your webroot can be different to your project root
Version 1.3.0 with autoprefixer and cssnano
You can configure your autoprefixer via the browserlist config options:
Version 1.2.0 - Added setting for the Webpack DefinePlugin
more info on definePlugin: https://webpack.js.org/plugins/define-plugin/
{
definePlugin: {
BOOLEAN_ENV: !!process.env.BOOLEAN_ENV,
STRING_ENV: JSON.stringify(process.env.STRING_ENV),
},
}