Skip to content

Commit

Permalink
fix(gen): fix bower install prompt during project gen
Browse files Browse the repository at this point in the history
Update Angular and related to deps

Fixes #505
  • Loading branch information
eddiemonge committed Dec 17, 2013
1 parent 8a52a26 commit 706f133
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions templates/common/_bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
"name": "<%= _.slugify(_.humanize(appname)) %>",
"version": "0.0.0",
"dependencies": {
"angular": "~1.2.0",
"json3": "~3.2.4",
"angular": "~1.2.5",
"json3": "~3.2.6",
"es5-shim": "~2.1.0"<% if (bootstrap) { %>,
"jquery": "~1.10.2"<% if (compassBootstrap) { %>,
"sass-bootstrap": "~3.0.0"<% } else { %>,
"sass-bootstrap": "~3.0.2"<% } else { %>,
"bootstrap": "~3.0.3"<% } } %><% if (resourceModule) { %>,
"angular-resource": "~1.2.0"<% } %><% if (cookiesModule) { %>,
"angular-cookies": "~1.2.0"<% } %><% if (sanitizeModule) { %>,
"angular-sanitize": "~1.2.0"<% } %><% if (routeModule) { %>,
"angular-route": "~1.2.0"<% } %>
"angular-resource": "~1.2.5"<% } %><% if (cookiesModule) { %>,
"angular-cookies": "~1.2.5"<% } %><% if (sanitizeModule) { %>,
"angular-sanitize": "~1.2.5"<% } %><% if (routeModule) { %>,
"angular-route": "~1.2.5"<% } %>
},
"devDependencies": {
"angular-mocks": "~1.2.0",
"angular-scenario": "~1.2.0"
"angular-mocks": "~1.2.5",
"angular-scenario": "~1.2.5"
}
}

0 comments on commit 706f133

Please sign in to comment.