An Angular.js plugin for Lineman based on the Google project structure
npm install lineman-angular-googThis is a plugin to get started with Angular.js using
Lineman. We recommend you look at our
Angular template project
as a starting point.
This plugin will configure your lineman project to incorporate:
* grunt-ngmin to handle minification, replacing uglify, in order to deal with Angular's fucntion#toString()'ing to figure out what to inject into your methods.
grunt-angular-templates to compile the client-side .html templates you add to app/templates
Keep in mind that grunt-angular-templates assumes that your module is named app. You'll need to override that in your lineman project if you'd like your templates on some other module, like so:
````
ngtemplates: {
options: {
module: "myModuleName"
}
}