Skip to content

Commit ba66dae

Browse files
committed
replaced deprecated package grunt-bower-install with grunt-wiredep
1 parent a10d4eb commit ba66dae

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/templates/Gruntfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ module.exports = function (grunt) {
246246
},
247247

248248
// Automatically inject Bower components into the app
249-
bowerInstall: {
249+
wiredep: {
250250
target: {
251251
src: '<%%= yeoman.client %>/index.html',
252252
ignorePath: '<%%= yeoman.client %>/',
@@ -702,7 +702,7 @@ module.exports = function (grunt) {
702702
'injector:sass', <% } %>
703703
'concurrent:server',
704704
'injector',
705-
'bowerInstall',
705+
'wiredep',
706706
'autoprefixer',
707707
'concurrent:debug'
708708
]);
@@ -716,7 +716,7 @@ module.exports = function (grunt) {
716716
'injector:sass', <% } %>
717717
'concurrent:server',
718718
'injector',
719-
'bowerInstall',
719+
'wiredep',
720720
'autoprefixer',
721721
'express:dev',
722722
'wait',
@@ -763,7 +763,7 @@ module.exports = function (grunt) {
763763
'injector:sass', <% } %>
764764
'concurrent:test',
765765
'injector',
766-
'bowerInstall',
766+
'wiredep',
767767
'autoprefixer',
768768
'express:dev',
769769
'protractor'
@@ -783,7 +783,7 @@ module.exports = function (grunt) {
783783
'injector:sass', <% } %>
784784
'concurrent:dist',
785785
'injector',
786-
'bowerInstall',
786+
'wiredep',
787787
'useminPrepare',
788788
'autoprefixer',
789789
'ngtemplates',

app/templates/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"grunt": "~0.4.4",
3333
"grunt-autoprefixer": "~0.7.2",
34-
"grunt-bower-install": "~1.4.0",
34+
"grunt-wiredep": "~1.8.0",
3535
"grunt-concurrent": "~0.5.0",
3636
"grunt-contrib-clean": "~0.5.0",
3737
"grunt-contrib-concat": "~0.4.0",

0 commit comments

Comments
 (0)