Skip to content

Commit

Permalink
Dependency version care in _bower.json
Browse files Browse the repository at this point in the history
- adjusts bower.json to allways depend on the latest stable 1.2.x release of angular
- bumps version of bootstrap to match with the version of bootstrap-sass-official
  • Loading branch information
Konstantinos Kostarellis committed Mar 29, 2014
1 parent a23e735 commit 94c0c63
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions templates/common/_bower.json
Expand Up @@ -2,20 +2,20 @@
"name": "<%= _.slugify(_.humanize(appname)) %>",
"version": "0.0.0",
"dependencies": {
"angular": "1.2.11",
"angular": ">=1.2.*",
"json3": "~3.2.6",
"es5-shim": "~2.1.0"<% if (bootstrap) { %>,
"jquery": "~1.11.0"<% if (compassBootstrap) { %>,
"bootstrap-sass-official": "~3.1.1"<% } else { %>,
"bootstrap": "~3.0.3"<% } } %><% if (resourceModule) { %>,
"angular-resource": "1.2.11"<% } %><% if (cookiesModule) { %>,
"angular-cookies": "1.2.11"<% } %><% if (sanitizeModule) { %>,
"angular-sanitize": "1.2.11"<% } %><% if (routeModule) { %>,
"angular-route": "1.2.11"<% } %>
"bootstrap": "~3.1.1"<% } } %><% if (resourceModule) { %>,
"angular-resource": ">=1.2.*"<% } %><% if (cookiesModule) { %>,
"angular-cookies": ">=1.2.*"<% } %><% if (sanitizeModule) { %>,
"angular-sanitize": ">=1.2.*"<% } %><% if (routeModule) { %>,
"angular-route": ">=1.2.*"<% } %>
},
"devDependencies": {
"angular-mocks": "1.2.11",
"angular-scenario": "1.2.11"
"angular-mocks": ">=1.2.*",
"angular-scenario": ">=1.2.*"
},
"testPath": "test/client/spec"
}

0 comments on commit 94c0c63

Please sign in to comment.