Skip to content

Commit 3f828e2

Browse files
committed
Enable interactive to resolve dependencies on build time
1 parent dd032a2 commit 3f828e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ gulp.task('bower:configure', ['clean:resources'], function(done) {
5151

5252
gulp.task('bower:install', ['clean', 'bower:configure'], function() {
5353
if (globalVar.bowerPackages) {
54-
return bower({ cmd: 'install', cwd: globalVar.publicDir}, [globalVar.bowerPackages]);
54+
return bower({ cmd: 'install', cwd: globalVar.publicDir, interactive: true }, [globalVar.bowerPackages]);
5555
} else {
5656
gutil.log('No --package provided. Using package(s) from bower_components folder.');
5757
return gulp.src('./bower_components/**/*', {base: '.'}).pipe(gulp.dest(globalVar.publicDir));

0 commit comments

Comments
 (0)