extensible-react-scripts

1.1.1 • Public • Published

Extensible React Scripts

react-scripts version: 1.1.0

Why?

The official react-scripts that is included in Create React App does not allow any custom webpack configuration, which leads to people using more eject than we wanted to.

Solution

Allow users to extend webpack configuration.

Usage

New projects

create-react-app APP_NAME_HERE --scripts-version extensible-react-scripts

Edit the cra.config.js file generated at the root of the project.

Existing projects

  • yarn remove react-scripts
  • yarn add --dev extensible-react-scripts
  • Create a file named cra.config.js at the root of the project (outside src folder) exporting a function like below:
cra.config.js example
module.exports = {
  webpack: function(webpackConfig, { isDevelopment }) {
    // modify webpack config here
    const config = Object.assign({}, webpackConfig)

    // return the modified version
    return config
  },
}

That's it!

Available configurations

Config Format Return type
paths function(paths, { isDevelopment, resolvePath }) Object
webpack function(webpackConfig, { isDevelopment, paths, resolvePath }) Object

Versioning

The version will be the same of the official react-scripts. Check package.json or the top of this file.

Related projects

https://github.com/timarney/react-app-rewired

react-app-rewired by @timarney

configurable-react-scripts by @svrcekmichal

Maintainer

Bruno Lemos (@brunolemos on twitter)

Readme

Keywords

none

Package Sidebar

Install

npm i extensible-react-scripts

Weekly Downloads

3

Version

1.1.1

License

MIT

Unpacked Size

97.6 kB

Total Files

30

Last publish

Collaborators

  • brunolemos