inject-babel-plugins-cra

0.2.0 • Public • Published

inject-babel-plugins-cra

🔧 Injects babel plugins into create-react-app without ejecting.

npm CircleCI npm

Getting started

Install the module

Run yarn add --dev inject-babel-plugins-cra.

Usage example

  • add the babel plugins you need to your project. e.g: yarn add babel-plugin-relay babel-plugin-react-css-modules.
  • create a js script that injects the plugins to your app, let's call it init.js. e.g:
    const injectBabelPluginCRA = require('inject-babel-plugin-cra');
     
    injectBabelPluginCRA([
      // add a simple plugin
      { name: 'babel-plugin-relay' },
      // add a plugin with options
      {
        name: 'babel-plugin-react-css-modules',
        options: {
          generateScopedName: '[path]__[name]__[local]',
        },
      },
    ]);
  • Update your start script in package.json to call the init.js script first.
    • e.g "start": "node ./init.js && npm-run-all -p watch-css start-js"

Docs

params:

  • plugins:
    • description: Plugins to be injected
    • type:
      Array<{
        /* plugin name */
        name: string,
        /* plugin options */
        options?: { [string]: any } 
      }> = []
  • options?:
    • description: Optional advanced options object
    • type:
      {
        /* The path to to the babel preset file */
        babelPresetFilePath?: string,
        /* The string to match against before injecting the plugins */
        stringMatcher?: string,
      } = {
        /** For older version of CRA*/
        babelPresetFilePath: './node_modules/babel-preset-react-app/index.js',
        stringMatcher: 'const plugins = [',
      }

Readme

Keywords

none

Package Sidebar

Install

npm i inject-babel-plugins-cra

Weekly Downloads

238

Version

0.2.0

License

MIT

Unpacked Size

9.68 kB

Total Files

6

Last publish

Collaborators

  • a-tokyo