Reproduction steps:
Create a new module.
Answer the questions as following:
[?] What type? directive
[?] Module name (i.e. angular-forminput) some-directive
[?] Github User or Organization Name: Super Awesome Company, Inc.
[?] Module prefix - typically an abbreviation of your Github User/Organization Name (i.e. jrg) aw
Then, in the generated app.js file:
angular.module('myApp', [
'ngRoute', 'ngSanitize', 'ngTouch', 'ngAnimate', //additional angular modules
'Super Awesome Company, Inc..some-directive'
]).
It should be:
angular.module('myApp', [
'ngRoute', 'ngSanitize', 'ngTouch', 'ngAnimate', //additional angular modules
'SuperAwesomeCompanyInc.some-directive'
]).