UNPKG

generator-angular-blueprint

Version:

Yeoman angular generator that allows you to override global templates with your own!

26 lines (19 loc) 322 B
'use strict'; /** * @ngdoc directive * * @name <%= cameledName %> * * @description * directive for <%= appName %> */ function <%= cameledName %>() { return { restrict: 'A', link: link }; function link() { } } <%= cameledName %>.$inject = []; export default <%= cameledName %>;