Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(gulpfile): gulp bower not wiring deps correctly
Browse files Browse the repository at this point in the history
Closes #1199
  • Loading branch information
alfonso-presa committed Jan 11, 2016
1 parent 67da47d commit 0fe51cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/common/root/_gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ gulp.task('test', ['start:server:test'], function () {
gulp.task('bower', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: yeoman.app + '/bower_components',
directory: './bower_components',
ignorePath: '..'
}))
.pipe(gulp.dest(yeoman.app + '/views'));
.pipe(gulp.dest(yeoman.app));
});

///////////
Expand Down

0 comments on commit 0fe51cc

Please sign in to comment.