babel-plugin-react-bootstrap
npm install babel-plugin-react-bootstrap
``shell`
$ npm i --save-dev babel-plugin-react-bootstrap
Transforms
`js`
import { Button } from 'react-bootstrap';
roughly to
`js`
import Button from 'react-bootstrap/lib/Button';
`json``
{
"plugins": ["react-bootstrap"],
"presets": ["es2015"]
}
Heavily inspired by babel-plugin-lodash
and babel-plugin-date-fns.