Craco Versions Save

Create React App Configuration Override, an easy and comprehensible configuration layer for Create React App.

v7.0.0-alpha.0

2 years ago

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

2 years ago

New typescript config loader: https://github.com/gsoft-inc/craco/pull/347

v6.4.2

2 years ago

Fix ts config support with function syntax https://github.com/gsoft-inc/craco/pull/344

v6.4.1

2 years ago

Added support for craco.config.cjs file https://github.com/gsoft-inc/craco/pull/343

v6.4.0

2 years ago

Add support for TS config file https://github.com/gsoft-inc/craco/pull/334

v6.3.0

2 years ago

Add support for prepending or appending Webpack plugins https://github.com/gsoft-inc/craco/pull/322

v6.2.0

2 years ago

Allow to extend plugins by array or function https://github.com/gsoft-inc/craco/pull/267

v6.1.1

3 years ago

Fix the replacement of default CRA webpack plugins https://github.com/gsoft-inc/craco/pull/245

v6.1.0

3 years ago
  • 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: [],
    }
}