File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,16 @@ module.exports = function (grunt) {
29
29
// Project settings
30
30
yeoman : appConfig ,
31
31
32
+ bower : {
33
+ install : {
34
+ options : {
35
+ targetDir : './bower_components' ,
36
+ copy : false ,
37
+ cleanTargetDir : true
38
+ }
39
+ //just run 'grunt bower:install' and you'll see files from your Bower packages in lib directory
40
+ }
41
+ } ,
32
42
// Watches files for changes and runs tasks based on the changed files
33
43
watch : {
34
44
bower : {
@@ -467,6 +477,7 @@ module.exports = function (grunt) {
467
477
] ) ;
468
478
469
479
grunt . registerTask ( 'build' , [
480
+ 'bower:install' ,
470
481
'clean:dist' ,
471
482
'wiredep' ,
472
483
'useminPrepare' ,
@@ -486,7 +497,7 @@ module.exports = function (grunt) {
486
497
grunt . registerTask ( 'default' , [
487
498
'newer:jshint' ,
488
499
// 'test',
489
- 'build '
500
+ 'cordova '
490
501
] ) ;
491
502
492
503
grunt . registerTask ( 'cordova' ,
You can’t perform that action at this time.
0 commit comments