linnovate / meanio

meanio core module
MIT License
54 stars 73 forks source link

Case-sensitive Package Names #99

Open ADSKLowenthal opened 8 years ago

ADSKLowenthal commented 8 years ago

NPM's rules for package.json includes not using capital letters. A lot of MEAN setup (mean-cli, examples) uses camelCasing or something similar. We need to investigate this further.

It does seem that the Package walk to find mean packages will break if the name in package.json is not the same (case-sensitive) as the module name new Module('myName')

ADSKLowenthal commented 8 years ago

https://docs.npmjs.com/files/package.json

timelf123 commented 8 years ago

Good catch