Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Latest commit

 

History

History
42 lines (27 loc) · 1.71 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.71 KB

Build Status npm David David semantic-release Commitizen friendly

babel-plugin-seek-style-guide

Optimise your bundle by automatically rewriting import statements from seek-style-guide.

For example, turn this:

import { Text, Button } from 'seek-style-guide/react';

Into this:

import Text from 'seek-style-guide/react/Text/Text';
import Button from 'seek-style-guide/react/Button/Button';

Setup

First, install from npm:

$ npm install --save-dev babel-plugin-seek-style-guide

Then, add seek-style-guide to the plugins list in your Babel config. For example, in .babelrc:

{
  "plugins": ["seek-style-guide"]
}

Contributing

Refer to CONTRIBUTING.md.

License

MIT.