Closed fariasfrancisco closed 6 years ago
Sorry that you ran into some trouble here!
Try using the templateFilePath and defining a custom template without the semi colon:
We'll basically take the existing template and remove the ;
export default angular.module("<%= moduleName %>"<% if (createModule) { %>, []<% } %>)<% _.forEach(constants, function (constant) { %>
.<%= type %>("<%= constant.name %>", <%= constant.value %>)<% }) %>
Thanks!!!
I have the following custom wrapper:
the expected output is:
but I get this:
the
;
screws up with my code. I don't use;
because I follow standardjs.