Returns whether or not this is an Ember CLI addon. @method isEmberCLIAddon @return {Boolean} Whether or not this is an Ember CLI Addon.
()
| 201 | @return {Boolean} Whether or not this is an Ember CLI Addon. |
| 202 | */ |
| 203 | isEmberCLIAddon() { |
| 204 | return !!this.pkg && !!this.pkg.keywords && this.pkg.keywords.indexOf('ember-addon') > -1; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | Returns the path to the configuration. |
no outgoing calls
no test coverage detected