Skip to content

Releases: pluswerk/webpack-config

Version 1.5.0 Feature faster stylelint

29 Oct 14:56
Compare
Choose a tag to compare

Updated dependencies

Stylelint now supports lintDirtyModules, so only changed scss gets linted which provides a performance boost.

Version 1.4.0 make publicPath configurable

18 Oct 09:10
Compare
Choose a tag to compare

✨ add publicPath option so your webroot can be different to your project root

Version 1.3.0 with autoprefixer and cssnano

05 Aug 09:25
Compare
Choose a tag to compare

You can configure your autoprefixer via the browserlist config options:

Version 1.2.0 - Added setting for the Webpack DefinePlugin

28 Jun 07:39
Compare
Choose a tag to compare

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),
  },
}