diff --git a/readme.md b/readme.md index 11f431eca..0539391c4 100644 --- a/readme.md +++ b/readme.md @@ -242,6 +242,8 @@ The following additional modules are available as components on bower, and insta All of these can be updated with `bower update` as new versions of AngularJS are released. +`json3` and `es5-shim` have been removed as Angular 1.3 has dropped IE8 support and that is the last version that needed these shims. If you still require these, you can include them with: `bower install --save json3 es5-shim`. `wiredep` should add them to your index.html file but if not you can manually add them. + ## Configuration Yeoman generated projects can be further tweaked according to your needs by modifying project files appropriately. diff --git a/templates/common/app/index.html b/templates/common/app/index.html index 7dd456684..802875a38 100644 --- a/templates/common/app/index.html +++ b/templates/common/app/index.html @@ -75,13 +75,6 @@ ga('send', 'pageview'); - - - - diff --git a/templates/common/root/_bower.json b/templates/common/root/_bower.json index 21753e95e..bec677583 100644 --- a/templates/common/root/_bower.json +++ b/templates/common/root/_bower.json @@ -2,9 +2,7 @@ "name": "<%= _.slugify(_.humanize(appname)) %>", "version": "0.0.0", "dependencies": { - "angular": "^<%= ngVer %>", - "json3": "^3.3.0", - "es5-shim": "^4.0.0"<% if (bootstrap) { %>,<% if (!compassBootstrap) { %> + "angular": "^<%= ngVer %>"<% if (bootstrap) { %>,<% if (!compassBootstrap) { %> "bootstrap": "^3.2.0"<% } else { %> "bootstrap-sass-official": "^3.2.0"<% } } %><% if (animateModule) { %>, "angular-animate": "^<%= ngVer %>"<% } %><% if (ariaModule) { %>,