guzart/gulp-ng-constant

View on GitHub
tpls/constant.tpl.ejs

Summary

Maintainability
Test Coverage
angular.module("<%- moduleName %>"<% if (deps) { %>, ${JSON.stringify(deps)}<% } %>)
<% constants.forEach(function(constant) { %>${indent}.constant("<%- constant.name %>", ${constant.value})<%= _.last(constants) === constant ? '' : '\n' %><% }) %>;