Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ module.exports = function (grunt) {
},

// Automatically inject Bower components into the app
bowerInstall: {
wiredep: {
target: {
src: '<%%= yeoman.client %>/index.html',
ignorePath: '<%%= yeoman.client %>/',
Expand Down Expand Up @@ -702,7 +702,7 @@ module.exports = function (grunt) {
'injector:sass', <% } %>
'concurrent:server',
'injector',
'bowerInstall',
'wiredep',
'autoprefixer',
'concurrent:debug'
]);
Expand All @@ -716,7 +716,7 @@ module.exports = function (grunt) {
'injector:sass', <% } %>
'concurrent:server',
'injector',
'bowerInstall',
'wiredep',
'autoprefixer',
'express:dev',
'wait',
Expand Down Expand Up @@ -763,7 +763,7 @@ module.exports = function (grunt) {
'injector:sass', <% } %>
'concurrent:test',
'injector',
'bowerInstall',
'wiredep',
'autoprefixer',
'express:dev',
'protractor'
Expand All @@ -783,7 +783,7 @@ module.exports = function (grunt) {
'injector:sass', <% } %>
'concurrent:dist',
'injector',
'bowerInstall',
'wiredep',
'useminPrepare',
'autoprefixer',
'ngtemplates',
Expand Down
2 changes: 1 addition & 1 deletion app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"devDependencies": {
"grunt": "~0.4.4",
"grunt-autoprefixer": "~0.7.2",
"grunt-bower-install": "~1.4.0",
"grunt-wiredep": "~1.8.0",
"grunt-concurrent": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
Expand Down