babel-plugin-remove-decorator

Babel 6 plugin that removes all decorators

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
babel-plugin-remove-decorator
1.0.06 years ago7 years agoMinified + gzip package size for babel-plugin-remove-decorator in KB

Readme

babel-plugin-remove-decorator
Babel 6 plugin that removes all decorators, useful when running unit tests
Removes decorators from top level classes, for example:
Before:
@MyDecorator
class Content {}
After:
class Content {}

I'll happily accept PRs for any further improvements to the project!

Usage

$ npm install --save-dev babel-plugin-remove-decorator
$ yarn add --dev babel-plugin-remove-decorator

Add to your babelrc:
{
  "env": {
    "test": {
      "plugins": ["remove-decorator"]
    }
  }
}