Skip to content

Releases: dilanx/craco

v7.0.0-alpha.0

25 Jan 16:42
Compare
Choose a tag to compare
v7.0.0-alpha.0 Pre-release
Pre-release

What's Changed

  • Update peer and dev dependencies to CRA 5.
  • Fix postcss options.
  • Creation of CRA 4 recipes folder.
  • Jest support for CRA 5.

v6.4.3

09 Dec 15:43
Compare
Choose a tag to compare

New typescript config loader: #347

v6.4.2

24 Nov 16:27
Compare
Choose a tag to compare

Fix ts config support with function syntax #344

v6.4.1

19 Nov 16:52
Compare
Choose a tag to compare

Added support for craco.config.cjs file #343

v6.4.0

25 Oct 02:00
Compare
Choose a tag to compare

Add support for TS config file #334

v6.3.0

11 Sep 01:40
Compare
Choose a tag to compare

Add support for prepending or appending Webpack plugins #322

v6.2.0

04 Jul 15:56
Compare
Choose a tag to compare

Allow to extend plugins by array or function #267

v6.1.2

28 Apr 00:57
Compare
Choose a tag to compare

v6.1.1

06 Feb 16:16
Compare
Choose a tag to compare

Fix the replacement of default CRA webpack plugins #245

v6.1.0

27 Jan 22:21
Compare
Choose a tag to compare
  • New utility methods available : getPlugin, pluginByName, addPlugins and removePlugins.
  • Webpack config override now allow the removal of webpack plugins.

The old syntax to modify webpack plugins (an array) is still supported for backward compatibility but we encourage you to switch to the new syntax:

webpack: {
    plugins: {
        add: [], 
        remove: [],
    }
}