It's hard maintaining all the dependencies by hand and Yeoman and Bower are mature enough to use now.
Probably best to create a yeoman generator that builds the individual apps and ditch this umbrella app.
Brian Ford's generator - npm install -g generator-angular looks like a good starting point but we would want to convert from coffeescript to livescript. (--coffee option generates a coffeescript codebase)
bower install angular-bootstrap will bring in angular-ui/bootstrap.
Might be worth extracting the few reusable directives we have at the same time. See #36.
It's hard maintaining all the dependencies by hand and
Yeoman
andBower
are mature enough to use now.Probably best to create a yeoman generator that builds the individual apps and ditch this umbrella app. Brian Ford's generator -
npm install -g generator-angular
looks like a good starting point but we would want to convert from coffeescript to livescript. (--coffee option generates a coffeescript codebase)bower install angular-bootstrap
will bring in angular-ui/bootstrap.Might be worth extracting the few reusable directives we have at the same time. See #36.