1.2.0 • Published 7 years ago

@zdychacek/babel-plugin-ng-inject-classes v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-ng-inject-classes

Annotates decorated AngularJS classes.

How to install

npm install @zdychacek/babel-plugin-ng-inject-classes --save-dev

Note: this library depends on the syntax decorators plugin for parsing. Simply type npm install babel-plugin-syntax-decorators --save-dev.

How to setup

.babelrc

{
  "presets": [ "es2015" ],
  "plugins": [
    "syntax-decorators",
    [
      "@zdychacek/babel-plugin-ng-inject-classes", {
        "decoratorNames": [ "Component" ]
      }
    ]
  ]
}

This plugin takes one option - decoratorNames. This option allows you to define list of decorator names to parse.

How to use

Transforms this code:

@Component('foo')
class Foo {
  constructor($timeout, $element) {}
}

into this:

@Component('foo')
class Foo {
  constructor($timeout, $element) {}
}
Foo.$inject = ['$timeout', '$element'];