1.0.5 • Published 8 years ago

babel-plugin-transform-remove-react-styl v1.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

babel-plugin-transform-remove-react-styl

Installation

$ npm install babel-plugin-transform-remove-react-styl

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-remove-react-styl"]
}

Via CLI

$ babel --plugins transform-remove-react-styl script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-remove-react-styl"]
});