Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 822 Bytes

File metadata and controls

45 lines (32 loc) · 822 Bytes

@krakenjs/babel-config-grumbler

Installation

npm install -D @krakenjs/babel-config-grumbler

Usage

  1. Create a .babelrc file at the root of your package.

  2. Identify the type of babel config to use: node or browser.

3a. For node packages add the following contents to your .babelrc:

```json
{
    "extends": "@krakenjs/babel-config-grumbler/babelrc-node"
}
```

3b. For browser packages add the following contents to your .babelrc:

```json
{
    "extends": "@krakenjs/babel-config-grumbler/babelrc-browser"
}
```
  1. Ensure you have a browserlist configuration in your package.json

      "browserslist": [
        "IE >= 9",
        "chrome >= 27",
        "firefox >= 30",
        "safari >= 5",
        "opera >= 23"
    ],